
Renames a directory.
DirRename ([d:]oldpath, [d:]newpath)
(s) oldpath existing directory name, with optional drive.
(s) newpath new name for directory.
(i) @TRUE if the directory was successfully renamed; @FALSE if it wasn't.
;Do a dirmake so the example runs smoothly.
DirMake("c:\wwwtemp")
;Once 'old' directory is created execute the example
;This is the real example.
old="c:\wwwtemp"
new="c:\wwwwork"
DirRename("c:\wwwtemp", "c:\wwwwork")
Message("DirRenname","%old% Directory renamed to %new%")