14. Necesito eliminar, usando ASP, un folder específico creado por una aplicación...
El método FileSystemObject.DeleteFolder permite efectuar la operación.
Ejemplo
<%
dim folder
Set test= CreateObject("Scripting.FileSystemObject")
If testFolderExists("d:\html\root\") Then
testDeleteFolder "d:\html\root\"
Response.Write("Folder cancellato")
End If
%>