IsolatedStorageFile.GetFileNames Method
Silverlight
Obtains the names of files in the root of an isolated store.
Namespace: System.IO.IsolatedStorage
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System.String[]An array of relative paths of files in the root of the isolated store. A zero-length array specifies that there are no files in the root.
| Exception | Condition |
|---|---|
| IsolatedStorageException | The isolated store has been removed. -or- Isolated storage is disabled. |
| ObjectDisposedException | The isolated store has been disposed. |
This method is equivalent to using the IsolatedStorageFile.GetFileNames(String) method with specified "*" for the search pattern.
The following example gets the names of files in the root directory. This example is part of a larger example provided for IsolatedStorageFile class.
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.