Removes an empty directory.
DirRemove (dir-list)
(s) dir-list a tab delimited list of directory pathnames.
(i) @TRUE if the directory was successfully removed; @FALSE if it wasn't.
Use this function to delete empty directories. You can delete one or more at a time by separating directory names with tabs. You cannot, however, use wildcards.
This function supports extended-length path names.
DirRemove("c:\xstuff") Message("DirRemove","Directory removed")
DirRemove(StrCat("C:\tempdir1",@TAB,"C:\tempdir2",@TAB,"C:\tempdir3"))