
I was thinking it would be good to be able to use regular expression components (or possibly other features of the program) to make directory structures.
eg
If I have folders called;
01-Part1
01-Part2
it would be nice to be able to match
([^-]*)-([^-]*)
and rename to
\1/\2
where forward slash is representing a folder division so a new folder "01" is created with two sub directories "Part1" and "Part2" (I'm sure there is a better syntax for the rename string \1"\"\2 or something)
I suppose this might be a bit out of scope for this program, but just a suggestion.
Cheers
Kenji