如何防止Win XP多个文件复制因一个文件复制失败而终止
在 Windows XP 中使用拖放操作复制(或移动)多个文件时,如果其中一个文件复制失败,复制过程将终止。在复制目录树时,这是非常烦人的,并且没有真正的指示进程到底在哪里停止,以及批处理的哪些部分没有被复制。
如何防止 Windows 在发生一次故障时停止进程(并可能获得问题指示)?运行目录比较程序很容易查看哪些文件丢失了。
When copying (or moving) multiple files using drag-and-drop in Windows XP, the copying process terminates if one files fails to copy. This is extremely annoying when copying a directory tree, and one has no real indication where exactly the process stopped, and what parts of the batch were not copied.
How can I prevent Windows from stopping the process upon one failure (and possibly get an indication for a problem)? It is easy to run a dir-compare program to see which files are missing after the fact.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简短的回答是——你不能。
如果您想可靠地复制大量文件并从错误中恢复,那么最好从命令行使用 XCopy 或 Robocopy 等替代方案。
Short answer is - you can't.
You're much better off using an alternative like XCopy or Robocopy from the command line if you want to reliably copy a lot of files and recover from errors along the way.