DirDelete
Deletes a folder.
DirDelete DirName , Recurse
Command Example: DirDelete A_ScriptDir "\TempDir", 1 Function Example: DirDelete(A_ScriptDir "\TempDir",1)
Parameters
- DirName
Name of the directory to delete, which is assumed to be in %A_WorkingDir% if an absolute path isn't specified.
- Recurse?
0 (default): Do not remove files and sub-directories contained in DirName. In this case, if DirName is not empty, no action will be taken and ErrorLevel will be set to 1.
1: Remove all files and subdirectories (like the Windows command "rmdir /S").
ErrorLevel
ErrorLevel is set to 1 if there was a problem or 0 otherwise.
Remarks
None
Related
Example
DirDelete, C:\Download Temp DirDelete, C:\Download Temp, 1