Description |
The RemoveDir function removes a directory Dir from the current directory.
If the remove succeeded, then True is returned, otherwise the error can be obtained using GetLastError.
|
| Related commands | |
Download this web site as a Windows program.
|
|
|
|
Example code : Create a new directory and then remove it | begin
 // Create a new directory in the current directory
if CreateDir('TestDir')
then ShowMessage('New directory added OK')
else ShowMessage('New directory add failed with error : '+
IntToStr(GetLastError));
 // Remove this directory
if RemoveDir('TestDir')
then ShowMessage('TestDir removed OK')
else ShowMessage('TestDir remove failed with error : '+
IntToStr(GetLastError));
end;
| Show full unit code | TestDir added OK
TestDir removed OK |
|
|