IsolatedStorageFile.GetFileNames Method (String)
Silverlight
Enumerates files in isolated storage scope that match a given pattern.
Namespace: System.IO.IsolatedStorage
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 null. |
| 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.
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.