我想要对路径在 .txt 中列出的文件进行 robocopy(以下是文件结构):
Path
C:\file1
C:\file2
etc.
我需要执行 robocopy 并保存文件的名称。我该怎么做?我尝试使用 for 循环但失败了 - 请参阅下面的示例:
for /f %%f in (test.txt) do robocopy /mir %%f D:\temp2
我想要对路径在 .txt 中列出的文件进行 robocopy(以下是文件结构):
Path
C:\file1
C:\file2
etc.
我需要执行 robocopy 并保存文件的名称。我该怎么做?我尝试使用 for 循环但失败了 - 请参阅下面的示例:
for /f %%f in (test.txt) do robocopy /mir %%f D:\temp2