我需要檢索pdf文件並將此pdf文件從源文件複製到目標文件。 PDF格式的名稱是TXT文件listspec一個數由行:Copy-Item and PadLeft
100
200
204
79002
XS002
我串聯了.pdf
擴展
但PDF文件001 .PDF,002 .PDF,204 .pdf,79002.pdf,XS002.pdf。我需要Padleft 0個PDF文件名稱最多5個位置。
我使用這個命令:
Get-Content $listspec | Foreach-Object{copy-item -Path $source\$_".pdf".PadLeft(5,'0'), -destination $destination -ErrorAction SilentlyContinue -ErrorVariable +errors}
我收到此錯誤:
*Copy-Item : Cannot convert 'System.Object[]' to the type 'System.String' required by parameter ' method is not supported.*
感謝您的幫助。
圍繞該串接的PDF延伸到所述代碼循環變量帶括號'('&')' –