IsolatedStorageFile.CreateFile(String) Método

Definición

Crea un archivo en el almacén aislado.

public:
 System::IO::IsolatedStorage::IsolatedStorageFileStream ^ CreateFile(System::String ^ path);
public System.IO.IsolatedStorage.IsolatedStorageFileStream CreateFile (string path);
[System.Runtime.InteropServices.ComVisible(false)]
public System.IO.IsolatedStorage.IsolatedStorageFileStream CreateFile (string path);
member this.CreateFile : string -> System.IO.IsolatedStorage.IsolatedStorageFileStream
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.CreateFile : string -> System.IO.IsolatedStorage.IsolatedStorageFileStream
Public Function CreateFile (path As String) As IsolatedStorageFileStream

Parámetros

path
String

Ruta de acceso relativa del archivo que se va a crear.

Devoluciones

Nuevo archivo de almacenamiento aislado.

Atributos

Excepciones

Se ha quitado el almacén aislado.

o bien

El almacenamiento aislado está deshabilitado.

path es incorrecto.

path es null.

No existe el directorio de path.

Se ha eliminado el almacén aislado.

Comentarios

Este método es equivalente al uso del IsolatedStorageFileStream.IsolatedStorageFileStream(String, FileMode, FileAccess, FileShare, IsolatedStorageFile) constructor .

Se aplica a

Consulte también