Powershell等效于复制Xcopy中仅存在于目标中的更新文件

时间:2011-09-10 13:12:19

标签: powershell xcopy

在Windows批处理中我会做

xcopy source_spec target_spec /d/u/r/y

/d : more recent
/u : only those that exist in target
/r : ignore the read only flag
/y : don't prompt for overwrite

使用powershell copy-item / copy cmdlet等效项最简单的是什么。

对于摇摆 - 是的我知道我可以在powershell中进行xcopy : - )

所以在powershell中我做了:

cmd /c xcopy source_spec target_spec /d/u/r/y

1 个答案:

答案 0 :(得分:5)

如果没有写几行脚本,就没有简单的等价物。使用xcopy或robocopy。