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




Reader Comments

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,516 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,516 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,516 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.


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.


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,516 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,516 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,516 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).


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,516 Comments

@Hiro,

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


7 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


7 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,516 Comments

@Patrick,

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


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,516 Comments

@S,

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


Post Comment  |  Ask Ben

Recent Blog Comments
Nov 22, 2009 at 4:30 AM
jQuery Live() Method And Event Bubbling
dasegtezr ... read »
Nov 22, 2009 at 4:03 AM
jQuery Live() Method And Event Bubbling
C_fieri ... read »
Nov 22, 2009 at 1:56 AM
Learning ColdFusion 9: Using CFQuery In CFScript Can Enable SQL Injection Attacks
Why adobe would give you script equivalent of cfquery is beyond me. I love cfquery tag because it helps me wriite clean sql, and get away from the horrible jdbc queries If I wanted to write javali ... read »
Nov 22, 2009 at 1:45 AM
Streaming Text Using ColdFusion's CFContent Tag And The Variable Attribute
The reason you would want to do this is to stream. Ack json/xml files to ria clients I used thus technique before because putting json in response stream causes debugging info to come thru As well a ... read »
Nov 21, 2009 at 6:47 PM
Hal Helms - Real World Object Oriented Development, Sarasota - Day Five
@charlie griefer, Thank you.. ... read »
Nov 21, 2009 at 5:15 PM
Using ColdFusion Structures To Remove Duplicate List Values
@Jose Galdamez, Oh heh yeah I didn't paste the whole code. I should have defined the vars -- my bad. It's fixed thou. Thanks. ... read »
Nov 21, 2009 at 4:49 PM
Styling The ColdFusion 8 WriteToBrowser CFImage Output
Great work yet again Ben! Whilst I didn't use this whole code, I copied some of your regex code for a similar problem with the lack of an alt attribute and unescaped ampersands in CFIMAGE for Railo 3 ... read »
Nov 21, 2009 at 1:13 PM
My First ColdFusion Builder Extension - Encrypting And Decrypting CFM / CFC Files
@Ben, Because I am pedantic, I just want to make sure that everyone knows there is absolutely no encryption going on. There is only encoding and obfuscation. The cfencode tool only obfuscates your C ... read »