在PowerShell中使用Robocopy从列表中排除文件

时间:2019-02-06 03:26:37

标签: windows powershell

我有一个自动robocopy,但是由于自动排序,文件有些移动。因此,我有一个脚本,现在可以从文件夹中获取所有文件名,并使用

编译包含文件名列表的文本文件
Get-Childitem -Path $path -Recurse -Name | Out-File $textfile

然后我运行robocopy,但希望它使用文本文件检查目录中已存在的文件列表。

robocopy $server $Folder *.* /minage:$date /maxage:$date /XF:$textfile

所有这些PowerShell文件都依次运行

powershell.exe -ExecutionPolicy Bypass -File C:\BuildList.ps1
powershell.exe -ExecutionPolicy Bypass -File C:\CopyFiles.ps1

0 个答案:

没有答案