我正在使用此答案中的PowerShell脚本进行文件复制。当我想使用过滤器包括多种文件类型时,就会出现问题。
Get-ChildItem $originalPath -filter "*.htm" | `
foreach{ $targetFile = $htmPath + $_.FullName.SubString($originalPath.Length); `
New-Item -ItemType File -Path $targetFile -Force; `
Copy-Item $_.FullName -destination $targetFile }
像梦一样工作。但是,当我想使用过滤器包含多种文件类型时,就会出现问题。
Get-ChildItem $originalPath `
-filter "*.gif","*.jpg","*.xls*","*.doc*","*.pdf*","*.wav*",".ppt*") | `
foreach{ $targetFile = $htmPath + $_.FullName.SubString($originalPath.Length); `
New-Item -ItemType File -Path $targetFile -Force; `
Copy-Item $_.FullName -destination $targetFile }
给我以下错误:
Get-ChildItem : Cannot convert 'System.Object[]' to the type 'System.String' required by parameter 'Filter'. Specified method is not supported.
At F:\data\foo\CGM.ps1:121 char:36
+ Get-ChildItem $originalPath -filter <<<< "*.gif","*.jpg","*.xls*","*.doc*","*.pdf*","*.wav*",".ppt*" | `
+ CategoryInfo : InvalidArgument: (:) [Get-ChildItem], ParameterBindingException
+ FullyQualifiedErrorId : CannotConvertArgument,Microsoft.PowerShell.Commands.GetChildItemCommand
我有括号的各种迭代,没有括号,-filter
,-include
,定义夹杂物变量(例如,$fileFilter
每次时间),并出现上述错误,始终指向后面的任何内容-filter
。
有趣的例外是当我编码时-filter "*.gif,*.jpg,*.xls*,*.doc*,*.pdf*,*.wav*,*.ppt*"
。没有错误,但是我并没有得到任何结果,也没有返回控制台。我怀疑我在不经意间编码了and
该陈述的隐含含义?
那么我在做什么错了,我该如何纠正呢?
\*
技巧解决了大约六个问题。太好了,谢谢!