Click or drag to resize
DirectoryInfoEnumerateDirectoriesInternal Method
Returns an enumerable collection of directory information that matches a specified search pattern and search subdirectory option.

Namespace: CMS.FileSystemStorage
Assembly: CMS.FileSystemStorage (in CMS.FileSystemStorage.dll) Version: 10.0.0
Syntax
C#
protected override IEnumerable<DirectoryInfo> EnumerateDirectoriesInternal(
	string searchPattern,
	SearchOption searchOption
)

Parameters

searchPattern
Type: SystemString
Search pattern.
searchOption
Type: CMS.IOSearchOption
One of the enumeration values that specifies whether the search operation should include only the current directory or all subdirectories.

Return Value

Type: IEnumerableDirectoryInfo
An enumerable collection of directories that matches searchPattern and searchOption.
See Also