ProjectedFileSystemProviderEnumerateItems Method |
Enumerates the item under the relative path.
Namespace:
ShellBoost.Core.ProjFS
Assembly:
ShellBoost.Core (in ShellBoost.Core.dll) Version: 1.8.3.0
Syntax public abstract IEnumerable<ProjectedFileSystemItem> EnumerateItems(
string relativePath,
string searchExpression
)
Parameters
- relativePath
- Type: SystemString
A string specifying the path, relative to the virtualization root, to the file or directory to be deleted. - searchExpression
- Type: SystemString
Gets the search expression. The search expression may include wildcard characters. The provider should use the ProjectedFileSystem's DoesNameContainWildCards function to determine whether wildcards are present in searchExpression, and it should use the DoesFileNameMatch function to determine whether an entry in its backing store matches a search expression containing wildcards.
Return Value
Type:
IEnumerableProjectedFileSystemItemA list of items corresponding to the input arguments.
See Also