[Tutor] command prompt ??

Alan Gauld alan.gauld at blueyonder.co.uk
Thu Dec 4 03:44:24 EST 2003


> C:\> "rename c:\windows\*.pwl c:\windows\*.zzz"
>
> how come that doesn't work wit win xp and command prompt?

You are not allowed to specify a path for the second filename.
DOS would treat that as a COPY not a RENAME...

So your command should be:

C:\> rename c:\windows\*.pwl *.zzz

HTH,

Alan g.



More information about the Tutor mailing list