IsolatedStorageFile.OpenFile メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定された共有オプションとアクセス オプションを使用してファイルを開きます。
オーバーロード
OpenFile(String, FileMode) |
指定したモードでファイルを開きます。 |
OpenFile(String, FileMode, FileAccess) |
読み取り/書き込みのアクセス権を指定し、指定したモードでファイルを開きます。 |
OpenFile(String, FileMode, FileAccess, FileShare) |
読み取り/書き込みアクセス権と共有アクセス許可を指定し、指定したモードでファイルを開きます。 |
OpenFile(String, FileMode)
指定したモードでファイルを開きます。
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
パラメーター
- path
- String
分離ストア内でのファイルの相対パス。
- mode
- FileMode
ファイルを開く方法を指定する列挙値の 1 つ。
戻り値
読み書き可能、共有不可の権限を適用し、指定したモードで開くファイル。
- 属性
例外
path
の形式が正しくありません。
path
が null
です。
path
にディレクトリが存在しません。
ファイルが見つかりません。mode
は Open に設定されます。
分離ストアは破棄されています。
注釈
このメソッドは、 コンストラクターを使用することと IsolatedStorageFileStream.IsolatedStorageFileStream(String, FileMode, IsolatedStorageFile) 同じです。
こちらもご覧ください
適用対象
OpenFile(String, FileMode, FileAccess)
読み取り/書き込みのアクセス権を指定し、指定したモードでファイルを開きます。
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
パラメーター
- path
- String
分離ストア内でのファイルの相対パス。
- mode
- FileMode
ファイルを開く方法を指定する列挙値の 1 つ。
- access
- FileAccess
ファイルを読み取りアクセスで開くか、書き込みアクセスで開くか、読み取り/書き込みアクセスで開くかを指定する列挙値の 1 つ。
戻り値
指定したアクセス権と共有不可の権限を適用し、指定したモードで開くファイル。
- 属性
例外
path
の形式が正しくありません。
path
が null
です。
path
にディレクトリが存在しません。
ファイルが見つかりません。mode
は Open に設定されます。
分離ストアは破棄されています。
注釈
このメソッドは、 コンストラクターを使用することと IsolatedStorageFileStream.IsolatedStorageFileStream(String, FileMode, FileAccess, IsolatedStorageFile) 同じです。
こちらもご覧ください
適用対象
OpenFile(String, FileMode, FileAccess, FileShare)
読み取り/書き込みアクセス権と共有アクセス許可を指定し、指定したモードでファイルを開きます。
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
パラメーター
- path
- String
分離ストア内でのファイルの相対パス。
- mode
- FileMode
ファイルを開く方法または作成する方法を指定する列挙値の 1 つ。
- access
- FileAccess
ファイルを読み取りアクセスで開くか、書き込みアクセスで開くか、読み取り/書き込みアクセスで開くかを指定する列挙値の 1 つ。
- share
- FileShare
他の IsolatedStorageFileStream オブジェクトがこのファイルに対して持つアクセス権の種類を指定する列挙値のビットごとの組み合わせ。
戻り値
指定したアクセス権と共有オプションを使用し、指定したモードで開くファイル。
- 属性
例外
path
の形式が正しくありません。
path
が null
です。
path
にディレクトリが存在しません。
ファイルが見つかりません。mode
は Open(FileMode) に設定されます。
分離ストアは破棄されています。
注釈
このメソッドは、 コンストラクターを使用することと IsolatedStorageFileStream.IsolatedStorageFileStream(String, FileMode, FileAccess, FileShare, IsolatedStorageFile) 同じです。
こちらもご覧ください
適用対象
.NET