优化文本编码识别
This commit is contained in:
parent
7543cb048e
commit
e693e7ad11
19
clean.bat
Normal file
19
clean.bat
Normal 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%
|
||||
)
|
||||
Loading…
x
Reference in New Issue
Block a user