|
大大可写一个批处理, 将 \seltool, my_tool, xpetool 之下用不到的工具改名.
工具: 用不到的 *.7z 可改成 *.7 , *.rar可改成*.ra_ , xpetool中的 *.WIM可改成 *.WI_
for %%i in ( C D E F G H I J K L M N O P Q R S T U V W ) do if exist %%i:\seltool set j=%%i
%j%:
cd \seltool
for %%f in (
工具1
工具2
) do move /Y %%f*.7z *.7 >nul 2>nul
cd \seltool
for %%f in (
工具3
工具4
) do move /Y %%f*.rar *.ra_ >nul 2>nul
cd \my_tool
for %%f in (
工具5
工具6
) do move /Y %%f*.7z *.7 >nul 2>nul
cd \my_tool
for %%f in (
工具7
工具8
) do move /Y %%f*.rar *.ra_ >nul 2>nul
cd \xpetool
for %%f in (
工具9
工具10
) do move /Y %%f*.WIM *.WI_ >nul 2>nul
|
|