我已使用以下代码创建了用于下载文件的本地文件夹
StorageFile destinationFile;
StorageFolder local = Windows.Storage.ApplicationData.Current.LocalFolder;
var dataFolder = await local.CreateFolderAsync("AppDownloads",
CreationCollisionOption.OpenIfExists);
destinationFile = await dataFolder.CreateFileAsync(destination,
CreationCollisionOption.GenerateUniqueName);
现在我需要从创建的子文件夹中访问所有下载的文件。
我尝试过使用:
StorageFolder local = Windows.Storage.ApplicationData.Current.LocalFolder;
IStorageFolder dataFolder1 = await local.GetFolderAsync("AppDownloads");
IEnumerable<IStorageFile> files = await local.GetFilesAsync();
但这不起作用。如何从此文件夹中获取所有下载的文件?
谢谢。