0

我想编写一个 Windows 批处理文件,它可以递归地查找所有 *.txt 文件并复制到目标目录,但保留相关目录结构。

例如

/examples
    /a
        /data
            a.txt
            b.txt
        /source
            a.js
            b.js
    /b
       /data
            c.txt
            d.txt
       /images
            a.png

复制到 testCopy 文件夹

/textCopy
    /a
        /data
            a.txt
            b.txt

    /b
       /data
            c.txt
            d.txt

我当前的 Windows 环境是 XP,我将无法使用 Robocopy。

4

1 回答 1

2
xcopy /s examples\*.txt textCopy\
于 2012-10-04T23:31:14.793 回答