Autodesk Vault ProfessionalVault API

GetChildFolders(IEnumerable<Folder>,Boolean,Boolean) Method

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

Retrieves a list of child folders for a bulk quantity of folders

Syntax

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

Parameters

NameDescription
foldersThe folders 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 in a dictionary mapping the parent folder to it's children

See Also