| Be the first user to complete this post  | Add to List | 
FileSystemObject : CreateFolder Method
Description:
This function creates a Folder.
Format :
objectOfFileSystemObject. CreateFolder(foldername)
Arguments:
- objectOfFileSystemObjectAs the names says, it’s a FileSystemObject.
- foldername
- Mandatory
- Type: String
- Folder will be created with the same name what you will pass here.
 
Function FnCreateFolder(strCompleteFolderPath)
   Set fso = CreateObject("Scripting.FileSystemObject")
   Set objFolder = fso. CreateFolder(strCompleteFolderPath)
End Function
Call FnCreateFolder ("c:\New Folder")
Also Read:
- FileSystemObject in Excel Macro
- FileSystemObject : CopyFile Method
- FileSystemObject : GetFileVersion Method
- FileSystemObject : FolderExists Method
- FileSystemObject : GetParentFolderName Method
 
    