我正在使用来自 这个答案的 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
?
那么,我到底做错了什么,又该如何纠正呢?