IsolatedStorageFile.GetFileNames Method (String)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Enumerates files in isolated storage scope that match a given pattern.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- searchPattern
- Type: System.String
A search pattern. Both single-character ("?") and multi-character ("*") wildcards are supported.
Return Value
Type: System.String ()An Array of relative paths of files in the isolated storage scope that match searchPattern. A zero-length array specifies that there are no files that match.
| Exception | Condition |
|---|---|
| IsolatedStorageException | The store has been removed. -or- Isolated storage is disabled. |
| ArgumentException | searchPattern is badly formed. |
| ArgumentNullException | searchPattern is Nothing. |
| DirectoryNotFoundException | Cannot find a part of the searchPattern. |
| ObjectDisposedException | The store has been disposed. |
The searchPattern "Project\Data*.txt" will give all ".txt" files beginning with Data in the Project directory of the isolated storage scope. For complete description of search pattern strings, see System.IO.Directory.
For information about how to find directory names, see the GetDirectoryNames method.