Click here to Skip to main content
6,594,932 members and growing! (17,371 online)
Email Password   helpLost your password?
Languages » C# » Applications     Intermediate License: The MIT License

xmove - Regex enabled file move command

By Sebastien Lorion

Moves files or directories using regular expression patterns.
C#, Windows, .NET 1.0, .NET 1.1VS.NET2003, Dev
Posted:8 Aug 2003
Updated:5 Nov 2003
Views:77,766
Bookmarked:42 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
29 votes for this article.
Popularity: 6.12 Rating: 4.19 out of 5
4 votes, 13.8%
1

2
2 votes, 6.9%
3
1 vote, 3.4%
4
22 votes, 75.9%
5

Introduction

Who haven't gone through the job of renaming a bunch of files ? I know I have for sure and up to this day, it was quite a chore ... Basically, I would fire up Textpad and make a batch file using its built-in Regular Expressions capabilities.

I did grow tired of always doing basically the same procedure over and over so I wrote this nifty utility in my spare time. You can think of it as the console "move" command on steroid, having all the power of regular expressions at its disposal.

With this tool, you can use a source Regex to specify which files to move/rename and then use any captures you made to specify the destination or new filenames.

This lets you easily rename all your mp3 in a standard way for example, or change the naming convention of a whole archive on your local intranet, etc.

It's up to you to provide the source and destination patterns : there are no built-in regex macros that you can use, except for changing case of filenames (to lower case, UPPER CASE, Proper Case and Sentence case), but it would be easy to add them if you feel so.

As a bonus, you will get two useful classes :

  • ArgumentParser : Full featured argument parsing class, supporting switches, name/value pairs, flags and solo values and implementing a cool idea thought out by Ray Hayes in this article.
    Update : I dedicated a whole article to this class which you can view here.
  • FindFile : File/directory searching class supporting both normal Regex and wildcard searches and using delegates to feed results

Finally, every single line of text is put in a resource file so you can easily translate it in your language (mine is French, but I didn't bother to do it :p).

IMPORTANT

I STRONGLY encourage you to always use the /batch=filename option. Even if my code would be without defect (!), maybe your regex pattern has some ! Regular expressions are beasts not be handled carelessly ... Take my word for it :)

Should you find a bug or an annoyance or even a feature you would like, drop me a line and I will do my best. If you can do it, that's even better !

Documentation

The following is the help displayed by default by the application.

xmove - Regex enabled move command by S�bastien Lorion, 2003
Moves files or directories using regular expression filters.

Syntax :

xmove [options] [source root] <source regex pattern> [dest root] <dest regex pattern>

If [source root] is not specified, the current directory will be used.
If [dest root] is not specified, it will have the same value as [source root].

By default, xmove operates on any files but not on directories (/aF).

Options :

/batch=<filename> : Makes a batch file instead of moving immediately.

/case=<case option> : Changes the case of the destination filename as specified by option
  • lower : lower case
  • upper : UPPER CASE
  • proper : Proper Case
  • sentence: Sentence case
/i : Ignores case
/r : Operates recursively (if specified, you cannot move directories (excludes /aA and /ad options))
/t : Test mode
/yc : Suppresses confirmation of each move operation
/yo : Suppresses confirmation of overwriting an existing file

/a[A|F|a|c|d|e|h|n|o|r|s|t] : Limits move operation to files with specific attribute(s)
  • A : Moves everything (including directories)
  • F : Moves any files
  • a : Moves only files with "archive" attribute
  • c : Moves only files with "compressed" attribute
  • d : Moves only files with "directory" attribute
  • e : Moves only files with "encrypted" attribute
  • h : Moves only files with "hidden" attribute
  • n : Moves only files with "normal" attribute
  • o : Moves only files with "offline" attribute
  • r : Moves only files with "read-only" attribute
  • s : Moves only files with "system" attribute
  • t : Moves only files with "temporary" attribute
You can specify more than one file attributes at the same time (e.g. /aacehnorst which is the same as /aF).

Examples :

  • Replaces all "_" characters by spaces in filenames :

    xmove "_" " "
  • Recursively changes case to "sentence" case for all files with "normal" and/or "archive" attributes :

    xmove /aan /r /case=sentence ".+" "$&"

Using the code

There is no magic involved here nor some incredibly hard stuff, so the code should speak by itself :) It's well documented and is quite flowing, but feel free to ask questions if the need arise !

I dedicated a whole article to cover ArgumentParser class.

Updates

  • 2003-08-20 : Fixed some minor bugs here and there.
  • 2003-08-26 : Completely rewrote ArgumentParser parsing class which was getting a bit convoluted.
  • 2003-08-26 : Forgot to allow empty arguments (which must be passed as "").
  • 2003-08-29 : Further enhanced ArgumentParser class with the idea of Ray Hayes in this article. I intend to publish this class in a new article.
  • 2003-08-30 : Improved performance of replace and corrected a bug preventing Ignore Case option to work.
  • 2003-08-31 : Added support for /arg=[false/true] or /arg=[0/1] (considered as switches)
  • 2003-09-01 : ArgumentParser class got his own article here.

License

This article, along with any associated source code and files, is licensed under The MIT License

About the Author

Sebastien Lorion


Member
Sébastien Lorion is software architect as day job.

He is also a musician, actually singing outside the shower Smile

He needs constant mental and emotional stimulation, so all of this might change someday ...

You can visit his blog at http://sebastienlorion.com.
Occupation: Architect
Location: Canada Canada

Other popular C# articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 20 of 20 (Total in Forum: 20) (Refresh)FirstPrevNext
GeneralSaved me an hour or two plus testing ;) Pinmemberpatnsnaudy22:17 4 Jun '08  
AnswerRe: Saved me an hour or two plus testing ;) PinmemberSebastien Lorion22:27 4 Jun '08  
GeneralVery Close... PinmemberStryder113:22 3 Jul '06  
AnswerRe: Very Close... PinmemberSébastien Lorion16:46 3 Jul '06  
GeneralThe Application Failed To Initialize Properly (0xc0000135) Pinmemberarmega11:59 7 Feb '06  
GeneralRe: The Application Failed To Initialize Properly (0xc0000135) PinmemberJerry Jeremiah22:45 25 Nov '07  
GeneralOption to import batch list PinmemberJafin11:46 6 Dec '05  
GeneralAdded ability to move files to a common directory Pinmemberpjbm17:52 10 Jul '05  
GeneralRe: Added ability to move files to a common directory PinmemberSébastien Lorion21:13 10 Jul '05  
GeneralAdded case change per matching groups Pinmemberjohnhamm22:29 1 Jul '05  
GeneralRe: Added case change per matching groups PinmemberSébastien Lorion23:19 1 Jul '05  
Generali also give you 5 Pinsussonly_boby7:08 22 Jun '04  
Generalnon-regex searches PinsussKirk Hodges3:24 1 Jun '04  
GeneralHow about a C++ version? PinmemberDarren Schroeder16:27 31 Aug '03  
GeneralRe: How about a C++ version? PinmemberSébastien Lorion16:53 31 Aug '03  
GeneralRe: How about a C++ version? PinmemberDarren Schroeder5:05 1 Sep '03  
GeneralTres bien fait - Felicitations! Pinmemberfbougadou7:30 13 Aug '03  
GeneralRe: Tres bien fait - Felicitations! PinmemberSébastien Lorion13:32 13 Aug '03  
Generalgot my 5 PinmemberJonathan de Halleux3:38 9 Aug '03  
GeneralRe: got my 5 PinmemberSébastien Lorion4:00 9 Aug '03  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 5 Nov 2003
Editor: Nishant Sivakumar
Copyright 2003 by Sebastien Lorion
Everything else Copyright © CodeProject, 1999-2009
Web22 | Advertise on the Code Project