Search found 2 matches
- 09 Jul 2019 15:59
- Forum: DOS Batch Forum
- Topic: batch to rename dir / sudir and files
- Replies: 3
- Views: 6583
Re: batch to rename dir / sudir and files
i tried to do this... @ECHO off :again echo Enter valid entry from the below options SET /P OPT=Which option would you like? 1) Lower 2) Upper 3) Exit IF %OPT%==1 GOTO :Lower IF %OPT%==2 GOTO :Upper IF %OPT%==3 GOTO :Exit GOTO :again :Lower REM "@echo off echo Enter the directory. echo. set /p "dir=...
- 09 Jul 2019 05:18
- Forum: DOS Batch Forum
- Topic: batch to rename dir / sudir and files
- Replies: 3
- Views: 6583
batch to rename dir / sudir and files
good morning, i am from portugal if you dont understand anithing please tryed to contact-me. i have this batch file...but this do not renames the directories and the subdirectories, only the files. can anyone help me? @echo off :again echo Enter valid entry from the below options SET /P OPT=Which op...