DeleteFolder Method
Deletes a specified folder and its contents.
object.DeleteFolder ( folderspec[, force] );
The DeleteFolder method does not distinguish between folders that have contents and those that do not. The specified folder is deleted regardless of whether or not it has contents.
An error occurs if no matching folders are found. The DeleteFolder method stops on the first error it encounters. No attempt is made to roll back or undo any changes that were made before an error occurred.
The following example illustrates the use of the DeleteFolder method.
function DeleteFolder(folderspec) { var fso; fso = new ActiveXObject("Scripting.FileSystemObject"); fso.DeleteFolder(folderspec); }
Sub DeleteAFolder(filespec)
Dim fso
Set fso = CreateObject("Scripting.FileSystemObject")
fso.DeleteFolder(filespec)
End Sub
Applies To:
Community Additions
Show: