提交必要文件

This commit is contained in:
2026-06-12 10:59:32 +08:00
parent 8b2ac635db
commit bb27963fc1
15 changed files with 2994 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
@echo off
setlocal enabledelayedexpansion
set count=1
for /f "delims=" %%i in ('dir /b /a-d') do (
if not "%%i"=="%~nx0" (
ren "%%i" "!count!%%~xi"
set /a count+=1
)
)
echo 重命名完成!
pause