本文介绍了批处理文件在.txt文件中指定的复制文件夹的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在寻找可复制文本文件中指定的文件夹的批处理文件代码。

所以在文本文件中

I'm looking for batch file code that will copy folders specified in a text file.
So in the text file

\User\

C:\Random\Random\Random

等等。

目标将设置为N:\\ \\Backups\PC

C:\User\
C:\Random\Random\Random
and so on.
The destination will be set at N:\Backups\PC

感谢

推荐答案

set dest=N:\Backups\PC
for /f %%i in (C:\dirs.txt) do copy "%%i" %dest%

这篇关于批处理文件在.txt文件中指定的复制文件夹的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 19:11