我正在开发一个基于 windows phone 8.1(RT) 的项目,我想根据创建日期显示文件列表。当我尝试此链接中的代码时,我得到一个“System.NotImplementedException”。
而且我的智能感知建议我它没有在 windows phone 8.1 中实现。那么这是否意味着我不能使用 Query 选项或者有其他选择吗?代码:
StorageFolder picturesFolder = KnownFolders.PicturesLibrary;
// Get the files in the user's Pictures folder and sort them by date.
StorageFileQueryResult results =
picturesFolder.CreateFileQuery(CommonFileQuery.OrderByDate);
// Iterate over the results and print the list of files
// to the Visual Studio Output window.
IReadOnlyList<StorageFile> sortedFiles =
await results.GetFilesAsync();
foreach (StorageFile item in sortedFiles)
{
Debug.WriteLine(item.Name + ", " + item.DateCreated);
}