Option for different slashes in Copy Full Pathnames

Thanks Leo, that's done the trick. I was even able to add my own command for a forward slash separator as well.

For anyone who has the same question:

Clipboard COPYNAMES=unc REGEXP (.*)\\(.*)# \1/\2

A couple of follow-ups:

  1. When working out how the REGEXP command worked, I gathered that the double backslash command is actually doing two renames:
    a. (.*)\\(.*)# to \1|\2 (backslash to |)
    b. (.*)[|](.*)# to \1\\\\\2 (| to double backslash)
    Why does it need to be done like this?

  2. I may have missed out on other useful commands with upgrades due to my custom menus. Is a full list of the current default menus (and XML) available?

Thanks for the really quick response.