Files
XueXiTongSrtDownloads/srt/SrtToTxt.bat
ChuXun 1aacbb1d18 1
2026-01-18 18:53:17 +08:00

14 lines
258 B
Batchfile

@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