标签: powershell robocopy
在PowerShell中我试图将文件从一个位置复制到另一个位置,并希望排除某些文件。所以我使用以下命令:
$Excludefiles="`"$((get-content 'C:\WorkingDirectory\List.txt') -join'""')`"" robocopy "C:\aa\" "C:bb\" /XF $Excludefiles
似乎它排除了一切。
请分享您的想法。