UtilSearchIndexerIsDirectoryIncluded(DirectoryInfo) Method
Returns a value indicating whether the specified directory path is included in Windows Search Index.
Namespace: DevCase.ThirdParty.MicrosoftSearchIndexerAssembly: DevCase.net48.ThirdParty.MicrosoftSearchIndexer (in DevCase.net48.ThirdParty.MicrosoftSearchIndexer.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static bool IsDirectoryIncluded(
DirectoryInfo directory
)
Public Shared Function IsDirectoryIncluded (
directory As DirectoryInfo
) As Boolean
Dim directory As DirectoryInfo
Dim returnValue As Boolean
returnValue = UtilSearchIndexer.IsDirectoryIncluded(directory)
public:
static bool IsDirectoryIncluded(
DirectoryInfo^ directory
)
static member IsDirectoryIncluded :
directory : DirectoryInfo -> bool
No code example is currently available or this language may not be supported.
- directory DirectoryInfo
-
The directory path to find.
Boolean if the specified directory path is included in Windows Search Index;
otherwise,
.
This is a code example.
No code example is currently available or this language may not be supported.
Dim directory As New DirectoryInfo("C:\Games\")
Dim isIncluded As Boolean = IsDirectoryIncluded(directory)
Debug.WriteLine($"{NameOf(isIncluded)}: {isIncluded}")
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.