Guest User

Untitled

a guest
Apr 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. if (backupFolder != null)
  2. {
  3. List<string> fileTypeFilter = new List<string>
  4. {
  5. ".txt",
  6. ".rtf"
  7. };
  8.  
  9. QueryOptions queryOptions = new QueryOptions (CommonFileQuery.OrderBySearchRank, fileTypeFilter);
  10. StorageFileQueryResult queryResult = backupFolder.CreateFileQueryWithOptions(queryOptions);
  11. IReadOnlyList<StorageFile> files = await queryResult.GetFilesAsync();
  12.  
  13. foreach (StorageFile file in files)
  14. {
  15.  
  16. }
  17. }
Add Comment
Please, Sign In to add comment