批处理文件,子文件夹中的xcopy

时间:2013-09-10 14:44:09

标签: batch-file subdirectory xcopy

您好我在之前的帖子中发现了这个批处理文件脚本有点有效,但是有谁知道如何制作这个搜索子文件夹?如果我使用绝对目的地,它可以很好地工作,但我需要它来搜索各种文件夹。

set src_folder=Z:\Digital Packages\
set dst_folder=Z:\Build\2013\September2013\test\test
set file_list=Z:\List\files.txt

if not exist "%dst_folder%" mkdir "%dst_folder%"

for /r "delims=" %%r in (%file_list%) do (
    xcopy "%src_folder%\%%r" "%dst_folder%\"

1 个答案:

答案 0 :(得分:0)

使用/ s选项。见XCOPY /?