IsolatedStorageFile.CreateFile(String) 方法

定義

在隔離儲存區中建立檔案。

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

參數

path
String

要建立之檔案的相對路徑。

傳回

新的隔離儲存區檔案。

屬性

例外狀況

已移除隔離儲存區。

-或-

隔離儲存區已停用。

path 的格式不正確。

pathnull

path 中的目錄不存在。

已處置隔離儲存區。

備註

這個方法相當於使用建 IsolatedStorageFileStream.IsolatedStorageFileStream(String, FileMode, FileAccess, FileShare, IsolatedStorageFile) 構函式。

適用於

另請參閱