首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >如何在PowerShell复制脚本中正确复制多个字符串

如何在PowerShell复制脚本中正确复制多个字符串
EN

Stack Overflow用户
提问于 2013-09-04 22:29:30
回答 3查看 137K关注 0票数 84

我正在使用this answer中的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

那么,我做错了什么,我如何才能纠正它呢?

EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/18616581

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档