METHOD:  FileSystemObject.CreateFolder

Implemented in version 2.0
 
object.CreateFolderfoldername

This method allows us to create a folder with the specified foldername.
 
If a folder already exists with the same name as you are trying to create, you will get an error. The FolderExists method can be used to check this before creating you new folder.

(Note that the "c:\DevGuru" folder must exist before you can add the "\myfolder" folder.)

Code:
<%
dim filesys, newfolder, newfolderpath
newfolderpath = "c:\DevGuru\myfolder"
set filesys=CreateObject("Scripting.FileSystemObject")
If Not filesys.FolderExists(newfolderpath) Then
   Set newfolder = filesys.CreateFolder(newfolderpath)
   Response.Write("A new folder has been created at: " & newfolderpath)
End If
%>


Output:
"A new folder has been created at: c:\DevGuru\myfolder"


Copyright 1999-2004 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information