标题: [文件操作] 批处理如何清理桌面文件? [打印本页]
作者: 1483851874 时间: 2023-10-13 17:10 标题: 批处理如何清理桌面文件?
需求:快捷方式不清理,其他文件夹和文件都清理
作者: Batcher 时间: 2023-10-13 22:11
回复 1# 1483851874
请参考Q-04把test.bat文件保存为ANSI编码:
https://mp.weixin.qq.com/s/Koje4FufWxWBs7ioDy_LJA
测试之前注意做好备份,以免误删文件。- @echo off
- if exist "%userprofile%\Desktop\" (
- cd /d "%userprofile%\Desktop\"
- ) else if exist "%userprofile%\桌面\" (
- cd /d "%userprofile%\桌面\"
- ) else (
- echo 找不到桌面所在的目录
- goto :End
- )
- for /f "delims=" %%i in ('dir /b /ad') do (
- rd /s /q "%%i"
- )
- for /f "delims=" %%i in ('dir /b /a-d ^| findstr /v /i /e /c:".lnk" /c:"desktop.ini"') do (
- del /f /q "%%i"
- )
-
- :End
- pause
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |