RemoveDir
Remove a directory from the file system.
Declaration
Source position: diskh.inc line 22
function RemoveDir(const Dir: RawByteString) : Boolean;
function RemoveDir(const Dir: UnicodeString) : Boolean;
Description
RemoveDir removes directory Dir from the disk. If the directory is not absolute, it is appended to the current working directory.
For an example, see CreateDir .
Errors
In case of error (e.g. the directory isn't empty) the function returns False. If successful, True is returned.