bat——vbs——批处理——编程语言——删除某个文件夹里的空文件和空文件夹
(例如“D:\新建文件夹”中存在没有内容的txt文件,doc文件,空的文件夹,运行bat后把这些空的都删除掉),谢谢!...
(例如“D:\新建文件夹”中存在 没有内容的 txt文件,doc文件,空的文件夹 ,运行bat后把这些空的都删除掉),谢谢!
展开
2个回答
展开全部
@echo off
for /f "delims=" %%i in ('dir /a-d /b /s D:\新建文件夹') do if "%%~zi"=="0" del /q "%%i"
for /f "delims=" %%i in ('dir /a-d /b /s D:\新建文件夹\*.doc') do if "%%~zi"=="11264" del /q "%%i"
:a
setlocal EnableDelayedExpansion
for /f "delims=" %%i in ('dir /ad /b /s D:\新建文件夹') do (
if "%%~zi"=="0" (
rd "%%i" 2>nul
set n=0
endlocal
) else (
set n=1
)
)
if !n!==0 goto a
echo msgbox "全部处理完毕^_^ 欢迎再次使用!",,"提示">提示.vbs
start "" 提示.vbs
ping /n 2 127.1>nul
del 提示.vbs
for /f "delims=" %%i in ('dir /a-d /b /s D:\新建文件夹') do if "%%~zi"=="0" del /q "%%i"
for /f "delims=" %%i in ('dir /a-d /b /s D:\新建文件夹\*.doc') do if "%%~zi"=="11264" del /q "%%i"
:a
setlocal EnableDelayedExpansion
for /f "delims=" %%i in ('dir /ad /b /s D:\新建文件夹') do (
if "%%~zi"=="0" (
rd "%%i" 2>nul
set n=0
endlocal
) else (
set n=1
)
)
if !n!==0 goto a
echo msgbox "全部处理完毕^_^ 欢迎再次使用!",,"提示">提示.vbs
start "" 提示.vbs
ping /n 2 127.1>nul
del 提示.vbs
追问
求大神赐予bat教程
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询