0

我正在尝试将大量图像加载为 GridApp 模板的数据源。我使用递归函数遍历文件夹:

public async void walk(StorageFolder folder)
    {
        IReadOnlyList<StorageFolder> subDirs = null;
        subDirs = await folder.GetFoldersAsync();
        foreach (var subDir in subDirs)
        {
            await SampleDataSource.AddGroupForFolderAsync(subDir.Path);
            walk(subDir);
        }
    }

这是核心功能:

public static async Task<bool> AddGroupForFolderAsync(string folderPath)
    {
        if (SampleDataSource.GetGroup(folderPath) != null) return false;
        StorageFolder fd = await StorageFolder.GetFolderFromPathAsync(folderPath);
        IReadOnlyList<StorageFile> fList1 = await fd.GetFilesAsync();
        List<StorageFile> fList2 = new List<StorageFile>();
        foreach (var file in fList1)
        {
            string ext = Path.GetExtension(file.Path).ToLower();
            if (ext == ".jpg" || ext == ".png" || ext == ".jpeg") fList2.Add(file);
        }
        if (fList2.Count != 0)
        {
            var folderGroup = new SampleDataGroup(
                uniqueId: folderPath,
                title: fd.Path,
                subtitle: null,
                imagePath: null,
                description: "Description goes here");
            foreach (var i in fList2)
            {
                StorageFile fl = await StorageFile.GetFileFromPathAsync(i.Path);
                IRandomAccessStream Stream = await fl.OpenAsync(FileAccessMode.Read);
                BitmapImage pict = new BitmapImage();
                pict.SetSource(Stream);
                if (pict != null && folderGroup.Image == null)
                {
                    folderGroup.SetImage(pict);
                }
                var dataItem = new SampleDataItem(
                    uniqueId: i.Path,
                    title: i.Path,
                    subtitle: null,
                    imagePath: pict,
                    description: "Decription goes here",
                    content: "Content goes here",
                    @group: folderGroup);
                folderGroup.Items.Add(dataItem);
            }
            AllGroups.Add(folderGroup);
            return true;
        }
        else { return false; }
    }

我需要加载大量文件(164 个文件夹和 1300 多个文件,总共 500 MB)。以后这个数额可能会更大。似乎 IRandomAccessStream 将文件加载到 RAM 中。如何直接从 HDD 将图像加载到应用程序?Windows-Store 应用程序可以吗?是否有可能仍然异步进行?

我知道我的代码需要重构。我不是要求重写它。我只需要在这种情况下如何节省内存的建议。

4

1 回答 1

1

您无法加载所有这些文件,并且不会遇到与内存相关的问题。您需要加载文件位置、映射它们,并可能创建可以在应用程序中显示的图片的缩略图版本。然后,一旦您确实需要加载图片,您就可以卸载任何以前的图片并加载您实际需要的图片。

当您需要查找要在屏幕上加载的下一个文件时,您只需使用您在应用程序中缓存的位置加载图片。

于 2013-05-01T17:58:49.343 回答