Autodesk Vault ProfessionalVault API

GetChildFolders(Folder,Boolean,Boolean) Method

Autodesk.DataManagement.Client.Framework.Vault.Services.ConnectionIFolderManager

Retrieves a list of the child folders for a particular folder

Syntax

System.Collections.Generic.IEnumerable<Folder> GetChildFolders(
   Folder folder,
   System.bool recurse,
   System.bool includeCloaked
)
Overloads Function GetChildFolders( _
   ByVal folder As Folder, _
   ByVal recurse As System.Boolean, _
   ByVal includeCloaked As System.Boolean _
) As System.Collections.Generic.IEnumerable(Of Folder)

Parameters

NameDescription
folderThe folder to retrieve children for
recurseIf true, then folders for subdirectories will be returned too. If false, only immediate children will be returned
includeCloakedIf false, then cloaked folders are not included in the results (furthermore, if recurse is true, cloaked folders will not be recursed into)

Return Value

The result set of child folders

See Also