2016-08-27 11 views
0

ファイルがリストされている場合、 "ファイル"または各要素(foreach(ファイル内のvarファイル))のサイズを調べる方法は?かなり大きいかもしれません。 WPFのシリアル化はUWPでは機能しません。UWP。 uwp-c#Windows.Storage要素のサイズを調べるには?

var openPicker = new FileOpenPicker(); 
     openPicker.FileTypeFilter.Add("*"); 

     var files = await openPicker.PickMultipleFilesAsync(); 

答えて

0
foreach (var file in files) 
{ 
    var fileProperties = await file.GetBasicPropertiesAsync(); 
    var size = fileProperties.Size; 
} 
関連する問題