|
- rem 设置文件的大小,文件属性实际大小值
- set num=23
- rem 设置文件后缀名
- set suf=exe
- set fus=txt
- set root="%cd%"
- echo %cd%
- call :find %root%
- pause & exit
- :find
- CD %1
- for /F %%i in ('dir /A:-D /B *.%suf%;*.%fus%') do if ERRORLEVEL 0 call :deal %%i
- for /F %%i in ('dir /A:D /B') do call :find %%i
- if "%cd%"==%root% pause&exit
- CD ..
- goto :EOF
- :deal
- echo 正在查找 %cd%
- set file=%1
- for /f %%I in ('dir /A /B %file%') do set numx=%%~zI
- rem 对符合条件的文件进行处理
- if %num%==%numx% del /s /q %file%
- goto :EOF
- :EOF
复制代码 |
|