FileSystemObject.CreateFolder Method (VB6)

Named Arguments

Yes

Syntax

oFileSysObj.CreateFolder(Path)

oFileSysObj

Use: Required

Data Type: FileSystemObject object

Any object variable returning a FileSystemObject object.

Path

Use: Required

Data Type: String

An expression that returns the name of the new folder to create.

Return Value

A Folder object

Description

Creates a single new folder in the path specified and returns its Folder object.

Rules at a Glance

  • Wildcard characters aren't allowed in newfoldername.

  • Path can be a relative or absolute path.

  • If no path is specified in Path, the current drive and directory are used.

Programming Tips and Gotchas

  • If the Path path is read-only, the CreateFolder method fails.

  • If Path already exists, the method generates runtime error 58, "File already exists."

  • If the user has adequate rights, Path can be a network path or share name. For example:

    CreateFolder "\\NTSERV1\d$\RootTwo\newFolder"
    CreateFolder "\\NTSERV1\RootTest\newFolder"
  • You must use the Set statement to assign the Folder object to an object variable. For example:

    Dim oFileSys As New FileSystemObject
    Dim oFolder As Folder
    Set oFolder = oFileSys.CreateFolder("MyFolder")

See Also

Folders.Add Method

Get VB & VBA in a Nutshell: The Language now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.