DIAdem Help

Content Type
Programming Language
Current manual
Table of Contents

Method: CreateFolder for FileSystemObject

Method: CreateFolder for FileSystemObject

Creates a folder.

Set oFolder = Object.CreateFolder(Path)
ObjectFileSystemObject
Object with this method
PathString
Specifies the path of the folder.
oFolderFolder
Returned object

The following example creates a folder:

Function CreateFolderObject(sFolder)
   Dim fso
   Set fso = CreateObject("Scripting.FileSystemObject")
   Set CreateFolderObject = fso.CreateFolder(sFolder)
End Function
In This Section
Was this information helpful?