私はキャプチャにMediaCapture APIを使用しています。しかし、私はどのようにデバイスのフォルダにではなく、アプリケーションのキャッシュに写真を保存することはできません。写真をアプリのキャッシュに保存するUWP c#
private async void btnPhoto_Click(object sender, RoutedEventArgs e)
{
// This is where we want to save to.
var storageFolder = KnownFolders.SavedPictures;
// Create the file that we're going to save the photo to.
var file = await storageFolder.CreateFileAsync("sample.jpg", CreationCollisionOption.GenerateUniqueName);
// Update the file with the contents of the photograph.
await _mediaCapture.CapturePhotoToStorageFileAsync(ImageEncodingProperties.CreateJpeg(), file);
}
ユーザーは最大5枚の写真をキャプチャしてサーバーに送信することができ、写真をデバイスに保存しないでください。どのように実装できますか?