Mfunc.FileRemoveDir(DirName [, Recurse?])
DirName
Name of the directory to delete, which is assumed to be in %A_WorkingDir% if an absolute path isn't specified.
Can be MfString instance or var containing string.
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.
1: Remove all files and subdirectories (like the Windows command "rmdir /S").
This parameter can be an expression, even one that evaluates to true or false (since true and false are stored internally as 1 and 0) or MfBool instance or var containing true or false.
Throws MfException throw any errors with InnerException set to the Autohotkey - FileRemoveDir error message.
Throws MfException any other general error occurs.
Wrapper for AutoHotkey Docs - FileRemoveDir.
Static method.
See Also:AutoHotkey Docs - FileRemoveDir.
Mfunc.FileRemoveDir("C:\Download Temp")
Mfunc.FileRemoveDir("C:\Download Temp", 1)