该文件已用批处理文件重命名,但不会停止

The file is renamed with batch file but it won't stop

我需要通过在文件名前添加“BV”来重命名文件夹中的所有文件。我的代码运行正常,但当该文件夹中的文件总数超过 ca 时出现问题。 200 个文件。它会将所有文件重命名为:“BV_BV_BV...”并且不会停止。

这是我的代码:

@echo off & setlocal

ECHO Moechten Sie das wirklich tun? (Bereits vorhandene Bildverzeichnisse werden geloescht 
ECHO und in den Dateinamen wird AWK2 hinzugefuegt) (j / n)
SET /p wahl=
if '%wahl%' == 'n' goto Nein
if '%wahl%' == 'j' goto Ja

:Ja
ECHO on

FOR %%I IN (*.bmp) DO ren "%%I" BV_"%%~nI".bmp

pause

我不确定在重命名所有文件后如何停止批处理文件。感谢您的帮助。

假设您想要重命名所有文件一次,根据您在 for 循环中的示例使用 BV_ 前缀。注意,我使用 choice 而不是 set /p

@echo off & setlocal

ECHO Moechten Sie das wirklich tun? (Bereits vorhandene Bildverzeichnisse werden geloescht 
ECHO und in den Dateinamen wird AWK2 hinzugefuegt) (j / n)
choice /c jn /m "wahl"
goto opt%errorlevel%

:opt1
for /f "delims=" %%I IN ('dir /b /a-d *.bmp ^| findstr /v /b "BV_"') do ren "%%~I" "BV_%%~I"
goto :eof
:opt2
echo do what ever you need to do here.