📄 删除.cmd
字号:
@echo off
color 2e
chdir /d %cd%
for %%i in (%chdir%*.*) do (
if not "%%~xi"==".cmd" (
if not "%%~xi"==".hex" (
if not "%%~xi"==".uvopt" (
if not "%%~xi"==".uvproj" (
if not "%%~xi"==".s" (
if not "%%~xi"==".c" (
if not "%%~xi"==".h" (
if not "%%~xi"==".txt" @del *%%~xi
)
)
)
)
)
)
)
)
exit
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -