Click or drag to resize

FileSystemEntryEnumerateAllChildren Method

Returns an enumerable collection of all entries in the current directory hierarchy.

Namespace:  callback.ShellBoost.Core.Utilities
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
public IEnumerable<FileSystemEntry> EnumerateAllChildren(
	FileSystemEntryEnumerationOptions options = FileSystemEntryEnumerationOptions.None,
	int bufferSize = 4096,
	bool throwOnError = true
)

Parameters

options (Optional)
Type: callback.ShellBoost.Core.UtilitiesFileSystemEntryEnumerationOptions
The options to use.
bufferSize (Optional)
Type: SystemInt32
The buffer size.
throwOnError (Optional)
Type: SystemBoolean
true to throw errors; otherwise false.

Return Value

Type: IEnumerableFileSystemEntry
An enumerable collection of all entries in the current directory hierarchy.
See Also