加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
clean.bat 540 Bytes
一键复制 编辑 原始数据 按行查看 历史
Luke 提交于 2023-08-10 13:17 . 优化文本编码识别
@echo off
set "folderPath1=D:\IDEAProjects\JCNCProjects\JNotepad\JNotepad"
set "folderPath2=D:\IDEAProjects\JCNCProjects\JNotepad\target"
if exist "%folderPath1%" (
echo Deleting folder 1: %folderPath1%
rmdir /s /q "%folderPath1%"
echo Folder 1 deleted successfully.
) else (
echo Folder 1 does not exist: %folderPath1%
)
if exist "%folderPath2%" (
echo Deleting folder 2: %folderPath2%
rmdir /s /q "%folderPath2%"
echo Folder 2 deleted successfully.
) else (
echo Folder 2 does not exist: %folderPath2%
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化