如何使用此批处理文件将所有* .txt文件从子文件夹复制到批处理文件夹?

时间:2014-08-16 10:52:37

标签: windows batch-file cmd copy copy-paste

我的主文件夹包含“batch.bat”文件和1个名为“Carrol”的子文件夹。 此“Carrol”子文件夹包含许多具有不同类型的文件。 我需要使用此“batch.bat”文件的命令将所有txt文件从“Carrol”子文件夹复制到主文件夹,使用此“batch.bat”

我该怎么做?

1 个答案:

答案 0 :(得分:0)

内部batch.bat

for %%i in (Carrol\*txt) do move Carrol\%%i %~dp0