无法根据Name属性复制文件

时间:2018-01-19 15:19:53

标签: file powershell

我写了一个Powershell脚本来获取文件夹的内容,并检查项目是否符合特定条件。如果他们这样做,他们应该被移动到一个特定的目录。

我遇到的挑战是脚本移动文件夹的所有内容,或者它们是否符合标准。

mean(x) = x

1 个答案:

答案 0 :(得分:1)

你可以大大简化这个:

$Path = 'E:\GatewaysRenditionArea\pdf'

Get-ChildItem -Path $Path -Filter '*bom*.pdf' |
    Copy-Item -Destination 'E:\Gateway\GatewaysStagingArea\BOM - Bill of Materials'

Get-ChildItem -Path $Path -Filter '*pid*.pdf' |
    Copy-Item -Destination 'E:\Gateway\GatewaysStagingArea\PID - Piping and Instrumentation Diagram'

请记住:向左过滤,格式正确。