Autodesk Vault ProfessionalVault API

AddFolder Method

Autodesk.Connectivity.WebServicesDocumentService

Creates a new folder in the Vault.

Required Permissions

FolderCreate

Syntax

public override Folder AddFolder(
   System.string name,
   System.long parentId,
   System.bool isLibrary
)
Public Overrides NotOverridable Function AddFolder( _
   ByVal name As System.String, _
   ByVal parentId As System.Long, _
   ByVal isLibrary As System.Boolean _
) As Folder

Parameters

NameDescription
nameThe name of the new folder.
parentIdThe ID of the parent folder.
isLibraryIs the folder a library. Libraries can only be created under the root folder.

Return Value

A Folder object representing the newly created folder.

See Also