@Echo off
echo @Echo off>%temp%\unins.bat
echo rd /q /s %cd%>>%temp%\unins.bat
start %temp%\unins.bat
把这个批处理放到要卸载的游戏目录
这个没写好,测试的时候呜呜(>_<),把我的好多代码文件给删了。
@echo off
set F=%cd%
cd..
echo rd "%F%" /s/q>temp.bat
echo del %%0>>temp.bat
temp.bat
rmdir /s /q .
复制到哪里,删除到哪里??