IsolatedStorageFile.MoveFile(String, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
移動指定的檔案至新的位置,並選擇性地讓您指定新檔名。
public:
void MoveFile(System::String ^ sourceFileName, System::String ^ destinationFileName);
public void MoveFile (string sourceFileName, string destinationFileName);
[System.Runtime.InteropServices.ComVisible(false)]
public void MoveFile (string sourceFileName, string destinationFileName);
member this.MoveFile : string * string -> unit
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.MoveFile : string * string -> unit
Public Sub MoveFile (sourceFileName As String, destinationFileName As String)
參數
- sourceFileName
- String
要移動的檔案名稱。
- destinationFileName
- String
檔案的新位置的路徑。 如果包含檔名,已移動的檔案會具有該名稱。
- 屬性
例外狀況
sourceFileName
或 destinationFileName
為零長度字串、只包含空格或包含 GetInvalidPathChars() 方法所定義的一或多個無效字元。
sourceFileName
或 destinationFileName
為 null
。
已關閉隔離儲存區。
已處置隔離儲存區。
找不到 sourceFileName
。
備註
如果 sourceFileName
和 destinationFileName
相同,這個方法不會擲回例外狀況。