删除指定文件夹、文件的批处理如何写
功能:1、删除当前目录(以及子目录)下的debug\release文件夹
2、删除当前目录(以及子目录)下的后缀为obj的文件
例如:文件夹:
E:\工程\Test
其中包含main.obj、main.h、main.cpp文件,包含debug、release、bin文件夹
bin文件夹中包含test.obj、test.cpp、test.h
假设有一个批处理文件:
批处理.bat放在
E:\工程\Test目录下
实现功能:删除所有obj文件(main.obj、test.obj等)、删除debug、release文件夹(也包括子目录的文件夹)
------解决方案--------------------
@echo off
del *.obj /s /f
rd release /s /q
rd debug /s /q