Is it possible to use Ant Renamer to move files based on the first letter of their name, to a (new) folder with that letter as its name? For example,
From:
Code: Select all
D:\Reports\king.txt
D:\Reports\Kong.dat
D:\Reports\Mountain.txt
etc
Code: Select all
D:\Reports\k\king.txt
D:\Reports\k\Kong.dat
D:\Reports\m\Mountain.txt
etc
I can use a Regex to extract the first character, and can use it to create the new Folder, but it then removes that Char from the file name plus I can't work out the (folders) Case change from K to k. Is this possible?
Thanks!