I've seen people do this in Perl, but I'm wondering if there's a way to do it via batch? It's built into Windows, so I think it would be more useful to know how to do this with a batch script. It doesn't require installing anything onto a computer.

An example input name: myFile_55 An example output pattern: change myFile to picture and reduce the number by 13. An example output: picture_42.

How would you approach this? I know a batch command to rename:

ren myFile_55 picture_42.

So, if I have a file named renamer.bat, I can add the following:

for /r %%x in (%1) do ren "%%x" %2.

Then I can type this command:

renamer.bat myfile* picture*.

I don't know how to reduce the numbers, though.

link|improve this question

1  
Take a look at set /? in cmd. I think set /a processes numbers in batch so you could use that in your for loop to minus the numbers. – Bali C Jan 23 at 10:44
@balic what if I wanted to rename all the files as having the folder name appended? I think it's an interesting topic. I want to have a good answer and wiki it, so we can talk about all the different kinds of filename changing algorithms. – Wolfpack'08 Jan 23 at 10:56
I'm not sure how you would go about that, but agreed it is an interesting subject. Hopefully some batch experts can shed some light on it! – Bali C Jan 23 at 10:57
Also, thank you for the command. I'm looking it up. – Wolfpack'08 Jan 23 at 11:00
feedback

1 Answer

You can probably put the original file name through a for loop, and extract the name and numbers, do the math on the numbers, then plug it back in with the new name and number. As long as the filename format is name_number you can use this:

REM Allow for numbers to be iterated within the for-loop i.e. the i - z
SETLOCAL ENABLEDELAYEDEXPANSION
SET i=0
SET z=13
SET newName=picture
SET workDir=C:\Path\To\Files

REM Given that filenames are in the format of 'Name_number', we're going to extract 'number
REM and set it to the i variables, then subtract it by 13, then rename the original file
REM to what the newName_x which if the filename was oldName_23 it would now be newName_10
FOR /r %%X in (%1) do (
  FOR /F "tokens=1-2 delims=_" %%A IN ("%%X") DO (
    SET i=%%B
    SET /A x=!i! - %z%

    REM ~dpX refers to the drive and path of the file
    REN "%%~dpX\%%A_%%B" "%newName%_!x!"
  )
)

EDIT: Edited the REN command to include the drive and path of the original file. Changed from lower case x to upper case X as to not confuse %%~dpX.

link|improve this answer
You may use just one SET command: SET /A x=%%B - %z% instead of the previous two. – Aacini Jan 24 at 2:25
@mechaflash Could you explain the lines a little? Batch is tremendously difficult for me to follow. – Wolfpack'08 Jan 24 at 5:09
added some REM statement in the code. hope it helps. – Mechaflash Jan 24 at 14:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.