私は何をする必要がありますか:
アプリの実行時に画像ファイルを正確な特定の場所に保存します (「Z:\test\photo.jpeg」としましょう)。
追加の必要な機能:
1) ファイル ''Z:\test\photo.jpeg' が既に存在する場合は上書きします。
2) フォルダ「Z:\test\」が存在しない場合は、書き込みをスキップします。
私がすでに試したこと:
using Windows.Media.Capture.UI;
using Windows.Storage;
CameraCaptureUI camera = new CameraCaptureUI();
StorageFile photo = await camera.CaptureFileAsync(CameraCaptureUIMode.Photo);
if (photo != null)
{
var targetFile = await ApplicationData.Current.LocalFolder.CreateFileAsync("photo.jpeg", CreationCollisionOption.ReplaceExisting);
if (targetFile != null)
{
await targetFile.DeleteAsync();
await photo.MoveAndReplaceAsync(targetFile);
}
}
質問:
変数「targetFile」を取得して特定の場所を指す方法はありますか。"Z:\test\photo.jpeg"?
ローカルのアプリ データ フォルダー、写真フォルダーなどを使用したくありません。この特定の場所である必要があります。