0

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

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

我正在寻找一个脚本,它将遍历所有 CustomerNames 并将一月文件夹移动到

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

谢谢

4

1 回答 1

4
cd \invoices
for /d %%I in (*) do (
    md "%%I\2013"
    move "%%I\January" "%%I\2013"
)
于 2013-01-29T23:24:36.697 回答