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.
|
|
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.
|
||||
|
|
|
For windows, this is the best tool I've found: 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. |
||||||||
|
|
|
In Bash, you could do the following:
|
|||
|
|
|
|
I'm sure there's a more elegant way, but here's the first thing that popped in my head:
|
|||
|
|
|
|
Windows command prompt: (If inside a batch file, change %x to %%x)
|
||
|
|
|
|
||
|
|
|
|
In python
|
||
|
|
|
|
On Linux, you may use the 'rename' command to rename files in batch. |
||
|
|
|
|
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.
|
||
|
|
|
|
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. |
||
|
|
|
|
|
|||
|
|
|
|
On Windows, The Rename does a pretty good job at that. Freeware, but not open source. |
||
|
|
|
|
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" |
||
|
|