vote up 3 vote down star

Is there any way of batch renaming files in sub directories?

Example:

Rename *.html to *.htm in a folder which has directories and sub directories.

flag

In what language? – Account deleted Oct 29 '08 at 5:01
By batch, do you mean "lot at a time" or in a .bat/.cmd/.sh way? The former isn't a programming question, and on Windows, there are tons of free utilities for that. The latter need more precision, at least which OS you target. – PhiLho Oct 29 '08 at 6:27

12 Answers

vote up 5 vote down check

For windows, this is the best tool I've found:

http://www.1-4a.com/rename/

It can do anything AND has the kitchen sink with it.

For Linux, you have a plethora of scripting languages and shells to help you, like the previous answers.

link|flag
The Perl script I posted works on Windows (tested it on Windows). – Account deleted Oct 29 '08 at 5:42
@BKB most windows installations don't come with perl. and it seems absurd to install perl just to rename directories. this is a low barrier solution – moogs Oct 29 '08 at 7:37
So installing an app that can only rename files is less absurd than installing something as powerful as perl? – BlueNovember Oct 11 at 17:45
!absurdity" depends on the person. a developer who has perl installed and knows the basics of perl (or any other scripting language for that matter) does not need to ask this question. I just answered for the audience – moogs Oct 19 at 2:53
vote up 1 vote down

In Bash, you could do the following:

for x in $(find . -name \*.html); do
  mv $x $(echo "$x" | sed 's/\.html$/.htm/')
done
link|flag
vote up 1 vote down

I'm sure there's a more elegant way, but here's the first thing that popped in my head:

for f in $(find . -type f -name '*.html'); do 
    mv $f $(echo "$f" | sed 's/html$/htm/')
done
link|flag
vote up 5 vote down

Windows command prompt: (If inside a batch file, change %x to %%x)

for /r %x in (*.html) do ren %x *.htm
link|flag
This doesn't work if the directory name has spaces in it. – raven Oct 29 '08 at 20:01
vote up 3 vote down
find . -regex ".*html$" | while read line;
 do 
    A=`basename ${line} | sed 's/html$/htm/g'`;
    B=`dirname ${line}`;
    mv ${line} "${B}/${A}";
 done
link|flag
vote up 1 vote down

In python

import os

target_dir = "."

for path, dirs, files in os.walk(target_dir):
    for file in files:
        filename, ext = os.path.splitext(file)
        new_file = filename + ".htm"

        if ext == '.html':
            old_filepath = os.path.join(path, file)
            new_filepath = os.path.join(path, new_file)
            os.rename(old_filepath, new_filepath)
link|flag
vote up 1 vote down

On Linux, you may use the 'rename' command to rename files in batch.

link|flag
vote up 0 vote down

AWK on Linux. For the first directory this is your answer... Extrapolate by recursively calling awk on dir_path perhaps by writing another awk which writes this exact awk below... and so on.

ls dir_path/. | awk -F"." '{print "mv file_name/"$0" dir_path/"$1".new_extension"}' |csh
link|flag
vote up 0 vote down

For Windows, I've made a convenient litte VBScript solution with regex-based renaming and Drag&Drop support. Give it a try if you like - put it in a vbs file and drop your folder on it in Explorer.

link|flag
vote up 0 vote down
In bash use command rename :)

 rename 's/\.htm$/.html/' *.htm

 # or

 find . -name '*.txt' -print0 | xargs -0 rename 's/.txt$/.xml/'

 #Obs1: Above I use regex \. --> literal '.'  and  $ --> end of line
 #Obs2: Use find -maxdepht 'value' for determine how recursive is
 #Obs3: Use -print0 to avoid 'names spaces asdfa' crash!
link|flag
vote up 0 vote down

On Windows, The Rename does a pretty good job at that. Freeware, but not open source.

link|flag
vote up 0 vote down

If you have forfiles (it comes with Windows XP and 2003 and newer stuff I think) you can run:

forfiles /S /M *.HTM /C "cmd /c ren @file *.HTML"

link|flag

Your Answer

Get an OpenID
or

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