Rename script to create subfolders

Hi all,

Is it possible to create subfolders with a rename script?

For example:
I have a directory called: MyArtist-MyAlbum
I would like to change it to: MyArtist\MyAlbum

Would it be possible with RegEx something like this?
Old Name: (.)-(.)
New Name: \1 backslash \2

Thanks!

Try this:
Old Name: (.)-(.)
New Name: \1\\2

It works. That was quite simple :slight_smile:

Thanks!