IsolatedStorageFile.OpenFile Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Otwiera plik przy użyciu określonych opcji udostępniania i dostępu.
Przeciążenia
OpenFile(String, FileMode) |
Otwiera plik w określonym trybie. |
OpenFile(String, FileMode, FileAccess) |
Otwiera plik w określonym trybie z określonym dostępem do odczytu/zapisu. |
OpenFile(String, FileMode, FileAccess, FileShare) |
Otwiera plik w określonym trybie z określonym dostępem do odczytu/zapisu i udostępnianiem. |
OpenFile(String, FileMode)
- Źródło:
- IsolatedStorageFile.cs
- Źródło:
- IsolatedStorageFile.cs
- Źródło:
- IsolatedStorageFile.cs
Otwiera plik w określonym trybie.
public:
System::IO::IsolatedStorage::IsolatedStorageFileStream ^ OpenFile(System::String ^ path, System::IO::FileMode mode);
public System.IO.IsolatedStorage.IsolatedStorageFileStream OpenFile (string path, System.IO.FileMode mode);
[System.Runtime.InteropServices.ComVisible(false)]
public System.IO.IsolatedStorage.IsolatedStorageFileStream OpenFile (string path, System.IO.FileMode mode);
member this.OpenFile : string * System.IO.FileMode -> System.IO.IsolatedStorage.IsolatedStorageFileStream
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.OpenFile : string * System.IO.FileMode -> System.IO.IsolatedStorage.IsolatedStorageFileStream
Public Function OpenFile (path As String, mode As FileMode) As IsolatedStorageFileStream
Parametry
- path
- String
Ścieżka względna pliku w izolowanym magazynie.
- mode
- FileMode
Jedna z wartości wyliczenia określająca sposób otwierania pliku.
Zwraca
Plik otwarty w określonym trybie z dostępem do odczytu/zapisu i jest nieudostępny.
- Atrybuty
Wyjątki
path
jest źle sformułowany.
path
to null
.
Katalog w programie path
nie istnieje.
Nie znaleziono pliku i mode
ustawiono wartość Open.
Wydzielony magazyn został usunięty.
Uwagi
Ta metoda jest równoważna użyciu konstruktora IsolatedStorageFileStream.IsolatedStorageFileStream(String, FileMode, IsolatedStorageFile) .
Zobacz też
Dotyczy
OpenFile(String, FileMode, FileAccess)
- Źródło:
- IsolatedStorageFile.cs
- Źródło:
- IsolatedStorageFile.cs
- Źródło:
- IsolatedStorageFile.cs
Otwiera plik w określonym trybie z określonym dostępem do odczytu/zapisu.
public:
System::IO::IsolatedStorage::IsolatedStorageFileStream ^ OpenFile(System::String ^ path, System::IO::FileMode mode, System::IO::FileAccess access);
public System.IO.IsolatedStorage.IsolatedStorageFileStream OpenFile (string path, System.IO.FileMode mode, System.IO.FileAccess access);
[System.Runtime.InteropServices.ComVisible(false)]
public System.IO.IsolatedStorage.IsolatedStorageFileStream OpenFile (string path, System.IO.FileMode mode, System.IO.FileAccess access);
member this.OpenFile : string * System.IO.FileMode * System.IO.FileAccess -> System.IO.IsolatedStorage.IsolatedStorageFileStream
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.OpenFile : string * System.IO.FileMode * System.IO.FileAccess -> System.IO.IsolatedStorage.IsolatedStorageFileStream
Public Function OpenFile (path As String, mode As FileMode, access As FileAccess) As IsolatedStorageFileStream
Parametry
- path
- String
Ścieżka względna pliku w izolowanym magazynie.
- mode
- FileMode
Jedna z wartości wyliczenia określająca sposób otwierania pliku.
- access
- FileAccess
Jedna z wartości wyliczenia określająca, czy plik zostanie otwarty z dostępem do odczytu, zapisu lub zapisu.
Zwraca
Plik otwarty w określonym trybie i dostępie i jest nieudostępny.
- Atrybuty
Wyjątki
path
jest źle sformułowany.
path
to null
.
Katalog w programie path
nie istnieje.
Nie znaleziono pliku i mode
ustawiono wartość Open.
Wydzielony magazyn został usunięty.
Uwagi
Ta metoda jest równoważna użyciu konstruktora IsolatedStorageFileStream.IsolatedStorageFileStream(String, FileMode, FileAccess, IsolatedStorageFile) .
Zobacz też
Dotyczy
OpenFile(String, FileMode, FileAccess, FileShare)
- Źródło:
- IsolatedStorageFile.cs
- Źródło:
- IsolatedStorageFile.cs
- Źródło:
- IsolatedStorageFile.cs
Otwiera plik w określonym trybie z określonym dostępem do odczytu/zapisu i udostępnianiem.
public:
System::IO::IsolatedStorage::IsolatedStorageFileStream ^ OpenFile(System::String ^ path, System::IO::FileMode mode, System::IO::FileAccess access, System::IO::FileShare share);
public System.IO.IsolatedStorage.IsolatedStorageFileStream OpenFile (string path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share);
[System.Runtime.InteropServices.ComVisible(false)]
public System.IO.IsolatedStorage.IsolatedStorageFileStream OpenFile (string path, System.IO.FileMode mode, System.IO.FileAccess access, System.IO.FileShare share);
member this.OpenFile : string * System.IO.FileMode * System.IO.FileAccess * System.IO.FileShare -> System.IO.IsolatedStorage.IsolatedStorageFileStream
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.OpenFile : string * System.IO.FileMode * System.IO.FileAccess * System.IO.FileShare -> System.IO.IsolatedStorage.IsolatedStorageFileStream
Public Function OpenFile (path As String, mode As FileMode, access As FileAccess, share As FileShare) As IsolatedStorageFileStream
Parametry
- path
- String
Ścieżka względna pliku w izolowanym magazynie.
- mode
- FileMode
Jedna z wartości wyliczenia określająca sposób otwierania lub tworzenia pliku.
- access
- FileAccess
Jedna z wartości wyliczenia określająca, czy plik zostanie otwarty z dostępem do odczytu, zapisu lub zapisu.
- share
- FileShare
Bitowa kombinacja wartości wyliczenia, które określają typ dostępu do innych IsolatedStorageFileStream obiektów do tego pliku.
Zwraca
Plik otwarty w określonym trybie i dostępie oraz z określonymi opcjami udostępniania.
- Atrybuty
Wyjątki
path
jest źle sformułowany.
path
to null
.
Katalog w programie path
nie istnieje.
Nie znaleziono pliku i mode
ustawiono wartość Open(FileMode).
Wydzielony magazyn został usunięty.
Uwagi
Ta metoda jest równoważna użyciu konstruktora IsolatedStorageFileStream.IsolatedStorageFileStream(String, FileMode, FileAccess, FileShare, IsolatedStorageFile) .