用于将文件夹移动到子文件夹的批处理文件

时间:2013-01-29 18:32:58

标签: windows file batch-file directory move

这是我当前的文件夹结构:

C:\Invoices\**CustomerName**\January

我正在寻找一个将遍历所有CustomerNames并将January文件夹移动到

的脚本
C:\Invoices\**CustomerName**\2013\January

由于

1 个答案:

答案 0 :(得分:4)

cd \invoices
for /d %%I in (*) do (
    md "%%I\2013"
    move "%%I\January" "%%I\2013"
)