我写了一个Powershell脚本来获取文件夹的内容,并检查项目是否符合特定条件。如果他们这样做,他们应该被移动到一个特定的目录。
我遇到的挑战是脚本移动文件夹的所有内容,或者它们是否符合标准。
mean(x) = x
答案 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'
请记住:向左过滤,格式正确。