2017-01-10 13 views
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 hereWindowsエクスプローラで複数のファイルを選択する方法

+0

この記事を読む:https://msdn.microsoft.com/en-us/library/windows/apps/windows.storage.pickers.fileopenpicker.pickmultiplefilesasync – Blackstar

答えて

1

代わりに複数ファイルの方法をお試しください。

openPicker.PickMultipleFilesAsync() 
+0

は男、あなたが一日保存、ありがとうございます。 –

関連する問題