METHOD:  Folder.Delete

Implemented in version 2.0
 
object.Delete [force]

The method used to delete the folder (and any contents) relating to the specified Folder object. The force parameter is a Boolean value - True allows the deletion of read-only folders while False (the default) does not.

Note that trying to delete a folder that doesn't exist will cause an error.

Code:
<%
dim filesys, demofolder
set filesys = CreateObject ("Scripting.FileSystemObject")
set demofolder = filesys.GetFolder("c:\projects\")
demofolder.Delete
%>