优化文本编码识别

This commit is contained in:
许轲 2023-08-10 13:17:31 +08:00
parent 7543cb048e
commit e693e7ad11

19
clean.bat Normal file
View File

@ -0,0 +1,19 @@
@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%
)