FileSystemQueryOptions Enumeration

Specifies flags that control the way a file system query is performed.

Namespace:  Dundas.BI.FileSystem
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.3.0.1000)
Syntax
[FlagsAttribute]
public enum FileSystemQueryOptions
Members
  Member nameValueDescription
None0 Specifies no query flag.
IncludeChildren1 Specifies that the Files and Folders properties of any results should be populated.
RecursiveResults2 When combined with IncludeChildren, specifies that the Files and Folders properties of any results should be populated recursively.
RecursiveQuery4 Specifies that the query should be applied to files/folders recursively.
IncludeNeverCheckedInByAnotherUser8 Specifies that the result should include entries which were created by another user but never checked in. This flag will be ignored unless the caller is an administrator.
SkipPopulateNames16 Specifies that account and group names in any MemberInfo associated with the result should not be populated. Use this option to improve performance in situations where having only the IDs is sufficient.
SkipQueryRootSecurityCheck32 Specifies that if the caller does not have the ListFolderContents on one of the query root IDs, that query root ID will simply be ignored, rather than a NoPrivilegeException being thrown.
See Also