DirectoryInfo.GetFileSystemInfos Method (String)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Retrieves an array of strongly typed FileSystemInfo objects representing the files and subdirectories matching the specified search criteria.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Function GetFileSystemInfos ( _ searchPattern As String _ ) As FileSystemInfo()
Parameters
- searchPattern
- Type: System.String
The search string, such as "System*", used to search for all directories beginning with the word "System".
Return Value
Type: System.IO.FileSystemInfo ()An array of strongly typed FileSystemInfo objects matching the search criteria.
| Exception | Condition |
|---|---|
| ArgumentNullException | searchPattern is Nothing. |
| DirectoryNotFoundException | The specified path is invalid, such as being on an unmapped drive. |
| SecurityException | The caller does not have the required permission. |
Show: