This commit is contained in:
ChuXun
2026-01-04 17:58:44 +08:00
parent cf8f4c5c3a
commit ec3b5157fe
180 changed files with 4677 additions and 18032 deletions

View File

@@ -1,14 +0,0 @@
@echo off
setlocal enabledelayedexpansion
echo Changing .srt files to .txt in the current directory...
for %%f in (*.srt) do (
ren "%%f" "%%~nf.txt"
echo Renamed: "%%f" to "%%~nf.txt"
)
echo.
echo All .srt files have been processed.
endlocal
pause