Lonk,
You will hear no arguments here.
The 4.21 Docs state with the Move (page 40)..
MOVE "C:Kix1" C:"kix4"
Really, it should be..
MOVE "C:\Kix1\" "C:\kix4\"
I agree that the directory should have a trailing slash to discern between a file and a directory.
Playing a bit at the CMD prompt, we see:
C:\>move kix1 kix4
Does the rename of the folder..
code:
C:\>move c:\kix1\ c:\kix4\
The system cannot find the file specified.
And..
code:
C:\>move c:\kix1 c:\kix4
1 file(s) moved.
Thanks,
Kent