私は 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ありがとう