<dirdel> Deletes directory including all subdirectories.  The directory doesn't have to be empty - all the files in the directory are deleted.


Command Tree:   Directory  \  Delete
.
Syntax:   <dirdel>("Dir", Reserved)
.
Dir
Full path to the directory to delete (e.g., "c:\olddata").
Reserved
Must be 0.
.
Example:   <#> This macro deletes directory you select
<#>
<commands_only_on>

<msg>(100,100,"Select the directory you want to delete.","Message",0)
<varchng>("vDir","SD","")
<msgoff>

<dirdel>("vDir",0)