Mirror folder name

Advanced Renamer forum
#1 : 20/03-16 04:36
Alex
Alex
Posts: 1
Hello,
hopefully you can help me because I not able to do it yet. I would like to batch rename various folders from "FolderName" to "emaNredloF". Simply mirroring it.
How can I do this?


20/03-16 04:36 - edited 20/03-16 04:38
#2 : 22/03-16 10:22
Tester123
Tester123
Posts: 92
Try this Script method:

function(index, item) {
return item.name.split('').reverse().join('');

Note that the first line is added automatically by AR, and is shown only for context.


22/03-16 10:22
#3 : 21/06-16 07:38
williamholdin
williamholdin
Posts: 1
Robocopy /MIR do the mirroring...

Use the /MIR switch carefully since it will be deleting files that do not match in the destination directory.....

http://net-informations.com/q/mis/robocopy.html



21/06-16 07:38