Enumerating files in an embedded resource directory

随声附和 提交于 2019-11-28 20:54:42
Charles

The resources are compiled into a resource stream named YourAssemblyName.g.resources. So, we load up this stream which appears to be a dictionary where the key is the resource name and the value is the resource data. We are interested in the resource name as that is (usually) the original folder and file name for the resource. We then filter out those keys that begin with the folder we are interested in.

public static string[] GetResourcesUnder(string folder)
{
    folder = folder.ToLower() + "/";

    var assembly       = Assembly.GetCallingAssembly();
    var resourcesName  = assembly.GetName().Name + ".g.resources";
    var stream         = assembly.GetManifestResourceStream(resourcesName);
    var resourceReader = new ResourceReader(stream);

    var resources =
        from p in resourceReader.OfType<DictionaryEntry>()
        let theme = (string)p.Key
        where theme.StartsWith(folder)
        select theme.Substring(folder.Length);

    return resources.ToArray();
}

The LINQ query filters out all the resource keys that start with the given folder name and also removes the folder name from the key.

One thing you need to know is that XAML files get compiled and given the extension BAML. So, let's say you have a bunch of resource dictionaries under a folder named Themes/Theme1.xaml, Themes/Theme2.xaml, etc. These will get compiled into your assembly as Themes/Theme1.baml, Themes/Theme2.baml, etc.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!