我正在开发一个 Windows 8 商店应用程序,我需要让用户选择一张照片并将其保存到本地文件夹,我已经在 JSON 文件中管理了保存方法,并且我知道如何使用选择器
FileOpenPicker openPicker = new FileOpenPicker();
openPicker.ViewMode = PickerViewMode.Thumbnail;
openPicker.SuggestedStartLocation = PickerLocationId.PicturesLibrary;
openPicker.FileTypeFilter.Add(".jpg");
openPicker.FileTypeFilter.Add(".jpeg");
openPicker.FileTypeFilter.Add(".png");
StorageFile file = await openPicker.PickSingleFileAsync();
是否可以将挑选的照片添加到 Assets 文件夹中以永久存在?如果是,请帮忙,如果不是,请帮忙 :D 谢谢