Is there an easy way to rename a group of files already contained in a directory, using Python?
Example: I have a directory full of *.doc files and I want to rename them in a consistent way.
X.doc -> "new(X).doc"
Y.doc -> "new(Y).doc"
|
2
|
Is there an easy way to rename a group of files already contained in a directory, using Python? Example: I have a directory full of *.doc files and I want to rename them in a consistent way.
|
|||
|
|
|
|
Such renaming is quite easy, for example with os and glob modules:
You could then use it in your example like this:
The above example will convert all |
||
|
|
|
|
Try: http://www.mattweber.org/2007/03/04/python-script-renamepy/
The program's source code is also available. |
||
|
|
|
|
If you don't mind using regular expressions, then this function would give you much power in renaming files:
So in your example, you could do (assuming it's the current directory where the files are):
but you could also roll back to the initial filenames:
and more. |
||
|
|