共用方式為


TargetFileRequest.TargetFile 屬性

定義

取得或設定提供的 IStorageFile 物件,代表要由提供儲存位置的應用程式儲存的檔案。

public:
 property IStorageFile ^ TargetFile { IStorageFile ^ get(); void set(IStorageFile ^ value); };
IStorageFile TargetFile();

void TargetFile(IStorageFile value);
public IStorageFile TargetFile { get; set; }
var iStorageFile = targetFileRequest.targetFile;
targetFileRequest.targetFile = iStorageFile;
Public Property TargetFile As IStorageFile

屬性值

物件,表示要儲存的檔案。 呼叫檔案選擇器以儲存的應用程式會將內容寫入此檔案。

備註

如果您的應用程式 (為儲存位置的提供者,) 無法提供要儲存的檔案物件,請將此屬性設定為 null。 除非使用者選取要儲存的現有檔案,否則您的應用程式應該建立 StorageFile 物件來代表將此屬性設定為該物件的檔案。

代表要儲存之檔案的目的檔名和副檔名必須符合使用者所指定的檔案名和副檔名 (,且可透過 FileName 屬性存取) ,或嘗試儲存檔案將會失敗。 如果嘗試失敗,使用者可以嘗試再次儲存檔案。

適用於

另請參閱