Visual Basic Scripting Edition | Language Reference |
Creates a folder.
object.CreateFolder(foldername)
object
Required. Always the name of a FileSystemObject.
foldername
Required. String expression that identifies the folder to create.
An error occurs if the specified folder already exists.
The following example illustrates use of the CreateFolder method:
Function CreateFolderDemo
Dim fso, f
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.CreateFolder("c:\New Folder")
CreateFolderDemo = f.Path
End Function
CopyFolder Method | DeleteFolder Method | MoveFolder Method
Applies To: FileSystemObject Object