我想删除我的文件夹C:/gametemp
,因为我的游戏会自动创建该文件夹并且除非我删除该文件夹否则不会运行。有没有办法编写批处理文件来检查循环中的文件夹并自动删除它?
操作系统:Windows 7。
答案 0 :(得分:0)
RMDIR [/S] [/Q] [drive:]path RD [/S] [/Q] [drive:]path
/S Removes all directories and files in the specified directory
in addition to the directory itself. Used to remove a directory
tree.
/Q Quiet mode, do not ask if ok to remove a directory tree with /S
这是命令提示符中用于删除目录及其子目录的一般过程。