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"
|
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 |
|||
|
|
|
I prefer writing small one liners for each replace I have to do instead of making a more generic and complex code. E.g.: This replaces all underscores with hyphens in any non-hidden file in the current directory
|
|||
|
|
|
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. |
|||
|
|
|
Try: http://www.mattweber.org/2007/03/04/python-script-renamepy/
The program's source code is also available. |
|||
|
|
|
I've written a python script on my own. It takes as arguments the path of the directory in which the files are present and the naming pattern that you want to use. However, it renames by attaching an incremental number (1, 2, 3 and so on) to the naming pattern you give.
Hope this works for you. |
|||
|
|