Deletes an existing empty directory
#include <WinAPIFiles.au3>
_WinAPI_RemoveDirectory ( $sDirPath )
$sDirPath | The path of the empty directory to be removed. |
Success: | True. |
Failure: | False, call _WinAPI_GetLastError() to get extended error information. |
The _WinAPI_RemoveDirectory() function marks a directory for deletion on close. Therefore, the directory is
not removed until the last handle to the directory is closed.
Search RemoveDirectory in MSDN Library.