Sort files into subfolders "A", "B", "C" alphabetically?

Is there a nice way to use DOPUS to create folders A,B,C etc. and sort files into those folders depending on the first letter of the filename?

I thought copy TO might work, but it looks like it only allows one destination that cannot change depending on source filename?

Select the files you want to work with, then run this code:

Rename REGEXP PATTERN "(.{1})(.+)" TO "\1/\1\2"

If you always want to move all files, add Select ALLFILES:

Select ALLFILES Rename REGEXP PATTERN "(.{1})(.+)" TO "\1/\1\2"

Awesome thanks!