如何使用 robocopy 复制正在使用的文件?
how to copy files in use with robocopy?
我正在使用一个批处理文件执行一些备份操作。
备份操作如下所示:
robocopy %source% %root%\%targetname% /MIR /R:0 /W:0 /NFL /NDL /NJS
很遗憾,由于windows "protection",无法复制某些正在使用的文件。
是否可以复制正在使用的文件?
我正在使用 windows 10。
windows10中的备份不够灵活,我不能只复制一些文件夹等等。
Robocopy does not copy open files. Any process may open files for exclusive read access by withholding the FILE_SHARE_READ
flag during opening. Even Robocopy's Backup mode will not touch those files.
我正在使用一个批处理文件执行一些备份操作。 备份操作如下所示:
robocopy %source% %root%\%targetname% /MIR /R:0 /W:0 /NFL /NDL /NJS
很遗憾,由于windows "protection",无法复制某些正在使用的文件。 是否可以复制正在使用的文件?
我正在使用 windows 10。 windows10中的备份不够灵活,我不能只复制一些文件夹等等。
Robocopy does not copy open files. Any process may open files for exclusive read access by withholding the
FILE_SHARE_READ
flag during opening. Even Robocopy's Backup mode will not touch those files.