ローカル ストレージ フォルダーから、SavePicker から選択したファイルに画像を保存する必要があります。ストリームを使用する必要がありますか? これが私のコードです:
StorageFile file = await savePicker.PickSaveFileAsync();
if (null != file)
{
var localFolder = Windows.Storage.ApplicationData.Current.LocalFolder;
StorageFile current_photo = await localFolder.GetFileAsync(img.Tag.ToString());
// TODO Stream from current_photo to file
}