I'm looking for a script (Perl, Python or batch would be fine) that will go through a designated file tree and renames all the child files.
For example, Folder1>File1.anytype becomes Folder1>Folder1File1.anytype.
Thanks
feedback
|
|
You mention a batch file, which probably means that you are on Windows (I assume you refer to a .bat file). If you're on a unix system, give this a shot:
Alternatively, this Python 3 program may do the trick (should also work on Windows...):
The directory layout before: .: Abc Def ./Abc: Foo2.bar Foo.bar ./Def: Baz2.quux Baz.quux Ghi ./Def/Ghi: Bar2.foo Bar.foo The directory layout after: .: Abc Def ./Abc: AbcFoo2.bar AbcFoo.bar ./Def: DefBaz2.quux DefBaz.quux Ghi ./Def/Ghi: DefGhiBar2.foo DefGhiBar.foo | |||||||
feedback
|
|
you could give a try to batchrename: http://batchrename.foryoursoft.com/ | |||
|
feedback
|
|
The best batch renamer is mmv. And see also How to do a mass rename? | |||
|
feedback
|
|
You can achieve such renames by using a nested for loop at the command line.. albeit a little ugly:
If you wish to put the above command in a batch script, repeat each % characters once.
To understand what the above command does, consult I feel like Batch is so arcane these days I need to preserve the BAT wisdom somehow... :-) I'm kidding :-).. but the command does work, I've tried it. | |||
|
feedback
|
|
Pretty trivial in Perl using File::Find and File::Copy | |||
|
feedback
|