I'd like to move files and add an extension to other files.
To move the files, I'm using
sysFile -copy $src $dest;
sysFile -delete $src;
And to add the extension, I tried
sysFile -rename $src ($src + "." + $index);
The delete method works but not the copy and rename and I don't understand why...