opname /PROJECTS/newproject /PROJECTS/somename
echos an error on the textport (cannot rename)
cc /PROJECTS
opname newproject somename
works.
opname /PROJECTS/newproject /PROJECTS/somename
echos an error on the textport (cannot rename)
cc /PROJECTS
opname newproject somename
works.
The problem is it’s trying to use /PROJECTS/somename as the new name, which isn’t a valid name. You should be doing:
opname /PROJECTS/newproject somename
Imagine someone did:
opname /PROJECTS/newproject /somethingelse/somename
That’d be meaningless, therefore the 2nd parameter is a name, not a path.
I’ll update the help so it’s more clear.