この回答の 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
そのステートメントで暗示をコーディングしたと思いますか?
では、何が間違っているのでしょうか。どうすれば修正できますか?