bat批处理笔记——为指定类型文件添加前缀名

/*批处理——为指定类型文件添加前缀名*/

@echo off
title 批量添加前缀名
echo.
echo 本批处理可批量添加前缀名
echo.
echo.&set /p strtemp3= 请输入要添加前缀的文件类型:
echo.&set /p strtemp2= 请输入要添加前缀的文件名字符串(不

变则直接回车):
setlocal enabledelayedexpansion
for /f "delims=" %%a in ('dir /a /b *.%strtemp3%') do (
ren "%%~a" "%strtemp2%%%a")
echo.
echo OK了!
echo.
pause


你可能感兴趣的:(Batch_DOS)