Hi!
Is it possible to create a folder structure from a given filename?
Assume you have a file like:
xxx - yyy - zzz.dat
After the miraculous function you will have a structure like that:
xxx
L__yyy
...L__xxx - yyy - zzz.dat
If not: How's about that?
In the rename dialog split filename with RegEx like that
(.) - (.) - (.*)
There must then be a new RegEx token like \Fn, so with
\F1 \F2 \3 the wanted folder structure was created.
Greetings