@ echo off
setlocal EnableDelayedExpansion
for /f "delims=" %%f in ('dir /b /a-d') do (
set n=%%~nf
if not "%%f"=="%~nx0" ren "%%f" "!n!."
)
setlocal EnableDelayedExpansion
for /f "delims=" %%f in ('dir /b /a-d') do (
set n=%%~nf
if not "%%f"=="%~nx0" ren "%%f" "!n!."
)
setlocal EnableDelayedExpansion
for /f "delims=" %%f in ('dir /b /a-d') do (
set n=%%~nf
if not "%%f"=="%~nx0" ren "%%f" "!n!.prt"
)
:@echo off&setlocal enabledelayedexpansion
:set /p xn=请输入你想要的后缀名:
:for /f "delims=" %%i in ('dir /b /a-d *.*') do (
:if not "%%i"=="%~nx0" ren "%%i" "%%~ni".!xn!
:)
:pause