Flex Renamer - Most Awesome Bulk File / Folder Regular Expression Renamer Ever

Posted January 6, 2007 at 1:55 PM

Tags: Work

Flex Renamer uses regular expressions to rename files and folders. This is the best solution that I have ever seen for bulk renaming. And, it uses regular expressions! How cool is that. I am not sure if you can find this application online anymore, I am not even sure where I found it. I think that this application is Freeware so I am posting it here for your benefit.

Flex Renamer v7.3

Here is a small screen shot of how it works. It can recurse, rename, delete, move, copy, alter the date created, alter the date modified. It can upper case, lower case, put in time stamps, put in parts of the date, and so very much more. I am telling you, this application rocks!


 
 
 

 
Flex Renamer v7.3 Regular Expression Bulk Renamer  
 
 
 

One quick case study of where I have used it is when converting a ColdFusion driven site into a static site (for CD-Rom creation). Once you burn out the site, it's awesome for blazing through the directory structure and replacing .cfm files with .htm files (not to mention removing a bunch of other junk that "site burning" applications put into file names).

Post Comment  |  Ask Ben  |  Permalink  |  Other Searches  |  Print Page



Learning ColdFusion 9 - ColdFusion 9 tutorials, samples, examples, demos

Reader Comments

Kevin
Jan 6, 2007 at 7:40 PM // reply »
14 Comments

For renaming cfm to html I would think rename *.cfm *.htm would be pretty quick for windows users :)


Jan 6, 2007 at 7:45 PM // reply »
6,371 Comments

Kevin,

I am Windows and am not familiar with this. Is that a Command Prompt type thing? Where would I find this? Can it handle regular expressions and recursion?


Jan 6, 2007 at 9:17 PM // reply »
95 Comments

Ben,

with the command prompt you can do "ren *.cfm *.html" and that will rename all the .cfm files to .html.

That aside, I love being able to rename with regular expressions. The flex tool is cool but I use XYPlorer for all my file browsing/organizing needs. It has supports regex renaming plus a whole lot more. It's not free but it's an excellent replacement of the crappy windows file shell. Check it out: http://www.xyplorer.com/


Jan 7, 2007 at 12:30 AM // reply »
10 Comments

LOL - here I was thinking someone had written a file renamer in Flex :-)


Jan 7, 2007 at 10:53 AM // reply »
6,371 Comments

Boyan,

XYPlorer looks pretty awesome. I downloaded the trial and am gonna give it a go at work. I love the whole bottom preview / info pain and the extended context menu. I can't quite figure out how to get that "favorites" frame to show on the bottom left, but I am working on it.

Thanks for the awesome link!


Jan 7, 2007 at 10:56 AM // reply »
6,371 Comments

Also, as far as the "ren" command, that is ok, but the Flex Renamer gives you a preview of all the files that are going to be updated. That just feels safer. Also, it can move things to the recycling bin. I am sure that "ren" has its place for certain people, but for me, the Flex Renamer interface and functionality cannot be beat.


Jan 7, 2007 at 11:00 AM // reply »
95 Comments

Ben,

I don't use "ren" - I was simply explaining the syntax. For XYPlorer, press F8 and that shows/hides the favorites. The option is called "Catalogs" and not "Favorites" in the menu under "Window" - I have no clue what it has two names.


Denis Evans
Jan 18, 2007 at 6:42 PM // reply »
2 Comments

Hi - FIRSTLY, Superb Renamer!

erm... (There's always an erm eh?) - There's ONE feature that would make it DEFINITELY live up the name above, in conjunction with XBOX filename usage?

...and that's that when renaming, etc... an optional checkbox to ONLY rename matching files if the current filename lenght is LONGER than 38.3 chars - i.e. 38 chars, a full stop, and a 3 char extension? - Even better, and useful to everyone, would be a specified amount?...

i.e. I'd LOVE to be able to use your fantastic program with a condition that it leaves alone/does not rename any files that are already under the filename character size limit?

THAT would make this the "Most Awesome Bulk File / Folder Regular Expression Renamer Ever" for me at least!!! ; )

Please, please include this feature, as I haven't found ONE renaming application that allows this, in my travels so far, and it's driving me NUTS! - I have lots of files to rename, and the other logic in your program does EVERYTHING else that I need to catch to make them shorter, remove illegal chars, etc...

Thanks and best regards, and please, if I've missed the obvious (i.e. it already somehow does this), then please feel free to flame me!

Best regards,

Den.


Denis Evans
Jan 18, 2007 at 6:45 PM // reply »
2 Comments

PS - Just found out from the previous posts (I'd jumped right into the forum from a link by mistake!) - that the author is MIA... : (

Ah well, if anyone else is thinking of bettering this great tool, then please keep my plea in mind! ; )

Cheers,

Den.


Jan 18, 2007 at 11:14 PM // reply »
6,371 Comments

Ha ha, I WISH I could make something this cool :)


Nov 18, 2007 at 10:00 PM // reply »
164 Comments

Awesome tool!

By the way, the official site for Flexible Renamer is http://hp.vector.co.jp/authors/VA014830/FlexRena/ . Looks like version 8 beta just came out a few days ago.


Nov 19, 2007 at 9:00 AM // reply »
6,371 Comments

@Steve,

Awesome :) I love this tool.


Mar 18, 2008 at 12:24 PM // reply »
4 Comments

Brilliant! How is it such an amazing tool has been languishing in obscurity for years? This thing needs some promotion...

Thanks for bringing it to light ;)


Mar 18, 2008 at 12:28 PM // reply »
6,371 Comments

@Acatalept,

Yeah, this tool is awesome. The renaming feature is awesome; but, equally as badass is the ability to delete files based on patterns (such as deleting all files that end in .SVN).


Hiro Katsumi
Apr 5, 2008 at 1:25 PM // reply »
1 Comments

Flexible Renamer v8.0 was release on 3/9/2008

Go here ==> http://hp.vector.co.jp/authors/VA014830/FlexRena/

There are lots of enhancements. I like this software.


Aug 8, 2008 at 7:46 PM // reply »
6,371 Comments

@Hiro,

Just installed the new version on my machine... I also love this software.


Jimbo
Dec 22, 2008 at 11:32 PM // reply »
6 Comments

@Den

I think this is the flexible renamer search regular expression you are looking for

[^.]{39,}|[^.]{39,}\.[^.]*|[^.]*\.[^.]{4,}

This will find all files with names which are longer than 38.3

It is made of three alternate expressions. The first find files with no extension, 39 chars or longer. The second find files with an extension where the first part is 39 chars or longer. The third find files with an extension 4 chars or longer.

cheers Jimbo


Jimbo
Dec 23, 2008 at 12:31 AM // reply »
6 Comments

@Den

Actually this is more complete.

[^.]{39,}|.{39,}\.[^.]*|.*\.[^.]{4,}

As some filenames can have more than one "." in them.

Jimbo


Jan 21, 2009 at 7:05 PM // reply »
1 Comments

Here is the latest version v8.0 http://hp.vector.co.jp/authors/VA014830/english/FlexRena/


Jan 23, 2009 at 9:43 AM // reply »
6,371 Comments

@Patrick,

Thanks for the link. This software is so badass :)


S Clapham
Aug 9, 2009 at 7:05 AM // reply »
1 Comments

There's also Quick File Rename which does what everything flex renamer does but also comes with a command line tool. Actually it can pretty much perform any rename task you will ever require.

See
http://www.skyjuicesoftware.com/software/QuickFileRename

Keep your options open. :)


Sep 6, 2009 at 2:55 PM // reply »
6,371 Comments

@S,

Awesome - I'll have to check it out. Thanks.


Post Comment  |  Ask Ben

Recent Blog Comments
Andrew Neely
Nov 7, 2009 at 4:56 PM
A Moment That Touched Me - The Fountainhead
Ben, Glad you enjoyed the podcast. Yeah, the Tank Riot guys can get really chatty during the episodes, but that's part of the charm of it for me. They've covered everything from Nichola Tesla to Cha ... read »
Nov 7, 2009 at 4:43 PM
Building A Fixed-Position Bottom Menu Bar (ala FaceBook)
Is it possible to make some more MenĂ¼`s ? ... read »
Jill
Nov 7, 2009 at 11:40 AM
How To Unformat Your Code (Like A Pro)
Derek, I think you might be right - sweet! Thanks for the link :) ... read »
Nov 7, 2009 at 11:25 AM
How To Unformat Your Code (Like A Pro)
I think it would be way easier to just use this http://www.logichammer.com/html-formatter/ He just released v3 and it rocks. ... read »
Jill
Nov 7, 2009 at 7:58 AM
How To Unformat Your Code (Like A Pro)
LMAO - this was pretty funny! I have to admit - I also love to reformat code so I can read it. My boss used to tell me to leave my OCD at home. Now I don't feel so bad after reading everyone else' ... read »
Nov 6, 2009 at 10:10 PM
How To Unformat Your Code (Like A Pro)
The timing of this post is just uncanny. I spent the last 15-20 minutes manually un-formatting my "Ben Nadel" style code within a CFC of mine. I was really digging the readability a few weeks ago, bu ... read »
Roe
Nov 6, 2009 at 5:11 PM
Passing Arrays By Reference In ColdFusion - SWEEET!
ArraySort also reorders the results of these java obj's ... read »
Nov 6, 2009 at 4:53 PM
How To Unformat Your Code (Like A Pro)
I tried to go *back* the other way. Adding formatting is actually a much more complicated problem than removing formatting. Anyway, here is what I could put together with a minimal amount of time: ... read »