在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
答案 0 :(得分:5)
如果没有写几行脚本,就没有简单的等价物。使用xcopy或robocopy。