VBScript » FileSystemObject » CreateFolder

Version: 2.0

Syntax:
object.CreateFolder (foldername)
foldername
Receives a string containing the name of the new folder that will be created.

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.

Examples

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"
Explanation:

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