xmove - Regex enabled file move command






4.81/5 (26 votes)
Moves files or directories using regular expression patterns.
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 optionlower
: lower caseupper
: UPPER CASEproper
: Proper Casesentence
: 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 filesa
: Moves only files with "archive" attributec
: Moves only files with "compressed" attributed
: Moves only files with "directory" attributee
: Moves only files with "encrypted" attributeh
: Moves only files with "hidden" attributen
: Moves only files with "normal" attributeo
: Moves only files with "offline" attributer
: Moves only files with "read-only" attributes
: Moves only files with "system" attributet
: Moves only files with "temporary" attribute
/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.