Autodesk Vault ProfessionalVault API

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

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

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

Syntax

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

Parameters

NameDescription
folderIdsThe id's of the 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 folder ids in a dictionary mapping the parent folder id to it's children

See Also