0
// Set up the file picker.
Windows.Storage.Pickers.FileOpenPicker openPicker =
new Windows.Storage.Pickers.FileOpenPicker();
openPicker.SuggestedStartLocation =
Windows.Storage.Pickers.PickerLocationId.PicturesLibrary;
openPicker.ViewMode =
Windows.Storage.Pickers.PickerViewMode.Thumbnail;
//Filter to include a sample subset of file types.
openPicker.FileTypeFilter.Clear();
openPicker.FileTypeFilter.Add(".png");
openPicker.FileTypeFilter.Add(".jpeg");
openPicker.FileTypeFilter.Add(".jpg");
//Open the file picker.
Windows.Storage.StorageFile file =
await openPicker.PickSingleFileAsync();
Windowsエクスプローラを開き、複数のイメージを選択して別のフォルダにコピーして貼り付けるとします。 しかし、私はこのコードを使用して、それは私を助けていません。 enter code here
Windowsエクスプローラで複数のファイルを選択する方法
この記事を読む:https://msdn.microsoft.com/en-us/library/windows/apps/windows.storage.pickers.fileopenpicker.pickmultiplefilesasync – Blackstar