IsolatedStorageFile Class
Collapse the table of content
Expand the table of content

IsolatedStorageFile Class

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Represents an isolated storage area containing files and directories.

System::Object
  System.IO.IsolatedStorage::IsolatedStorageFile

Namespace:  System.IO.IsolatedStorage
Assembly:  mscorlib (in mscorlib.dll)

No code example is currently available or this language may not be supported.

The IsolatedStorageFile type exposes the following members.

  NameDescription
Public propertyAvailableFreeSpaceGets a value that represents the amount of free space available for isolated storage.
Public propertyQuotaGets a value that represents the maximum amount of space available for isolated storage.
Top

  NameDescription
Public methodCopyFile(String, String)Copies an existing file to a new file.
Public methodCopyFile(String, String, Boolean)Copies an existing file to a new file, and optionally overwrites an existing file.
Public methodCreateDirectoryCreates a directory in the isolated storage scope.
Public methodCreateFileCreates a file in the isolated store.
Public methodDeleteDirectoryDeletes a directory in the isolated storage scope.
Public methodDeleteFileDeletes a file in the isolated store.
Public methodDirectoryExistsDetermines whether the specified path refers to an existing directory in the isolated store.
Public methodDisposeReleases all resources used by the IsolatedStorageFile.
Public methodEquals(Object)Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Public methodFileExistsDetermines whether the specified path refers to an existing file in the isolated store.
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.)
Public methodGetCreationTimeReturns the creation date and time of a specified file or directory.
Public methodGetDirectoryNames()Enumerates the directories in the root of an isolated store.
Public methodGetDirectoryNames(String)Enumerates directories in an isolated storage scope that match a given pattern.
Public methodGetFileNames()Obtains the names of files in the root of an isolated store.
Public methodGetFileNames(String)Enumerates files in isolated storage scope that match a given pattern.
Public methodGetHashCodeServes as a hash function for a particular type. (Inherited from Object.)
Public methodGetLastAccessTimeReturns the date and time a specified file or directory was last accessed.
Public methodGetLastWriteTimeReturns the date and time a specified file or directory was last written to.
Public methodGetTypeGets the Type of the current instance. (Inherited from Object.)
Public methodStatic memberGetUserStoreForApplicationObtains user-scoped isolated storage for use by an application that calls from the virtual host domain.
Public methodIncreaseQuotaToEnables an application to explicitly request a larger quota size, in bytes.
Protected methodMemberwiseCloneCreates a shallow copy of the current Object. (Inherited from Object.)
Public methodMoveDirectoryMoves a specified directory and its contents to a new location.
Public methodMoveFileMoves a specified file to a new location, and optionally lets you specify a new file name.
Public methodOpenFile(String, FileMode)Opens a file in the specified mode.
Public methodOpenFile(String, FileMode, FileAccess)Opens a file in the specified mode with the specified file access.
Public methodOpenFile(String, FileMode, FileAccess, FileShare)Opens a file in the specified mode with read, write, or read/write access and the specified sharing option.
Public methodRemoveRemoves the isolated storage scope and all its contents.
Public methodToStringReturns a string that represents the current object. (Inherited from Object.)
Top

This class abstracts the virtual file system for isolated storage. An IsolatedStorageFile object corresponds to a specific isolated storage scope, where files represented by IsolatedStorageFileStream objects exist. Applications can use isolated storage to save data in their own isolated portion of the file system, without having to specify a particular path within the file system.

The root of the virtual file system is located in a per-user, obfuscated folder on the physical file system. Each unique identifier provided by the host maps to a different root, which gives each application its own virtual file system. An application cannot navigate out of its own file system into another.

Since isolated stores are scoped to particular assemblies, most other managed code will not be able to access your code's data (highly trusted managed code and administration tools can access stores from other assemblies). Unmanaged code can access any isolated stores.

The following example shows how to use an IsolatedStorageFile object for most I/O tasks. For information on how to compile and run this example code, see Building examples that have static TextBlock controls for Windows Phone 8

No code example is currently available or this language may not be supported.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Show:
© 2017 Microsoft