例子:
Folder tree:
C:\
|
|---lion
| |---one
| |---two
| |---three
|
|---bear
我需要在“熊”文件夹中移动子文件夹(一、二、三等)。
我知道如何查找和移动特定的文件类型,但如何查找和移动文件夹不知道:
for /R "c:\one" %%f in (*.jpg) do move /Y "%%f" "c:\two"
例子:
Folder tree:
C:\
|
|---lion
| |---one
| |---two
| |---three
|
|---bear
我需要在“熊”文件夹中移动子文件夹(一、二、三等)。
我知道如何查找和移动特定的文件类型,但如何查找和移动文件夹不知道:
for /R "c:\one" %%f in (*.jpg) do move /Y "%%f" "c:\two"