up vote 2 down vote favorite
share [g+] share [fb]

I currently use GetManifestResourceStream to access embedded resources. The name of the resource comes from an external source that is not case sensitive. Is there any way to access embedded resources in a case insensitive way?

I would rather not have to name all my embedded resources with only lower case letters.

link|improve this question

75% accept rate
Darrel, do you have a list of the embedded resource names but simply don't know the case? e.g., you know that: MyBitmap MyText are embedded but could be named: MYBITmap myTEXT ? – Mark Jun 11 '09 at 0:34
The name of the resource comes in over an Url. I don't want the url to be case sensitive, but I have no way to map to the case-sensitive resources without a big manually maintained switch. – Darrel Miller Jun 11 '09 at 0:57
The function below might help. I posted it before I read you return comment. The intention behind this function is maintaining a lookup table. I think that's going to be the best approach given the restrictions in the framework – Mark Jun 11 '09 at 1:04
feedback

1 Answer

up vote 4 down vote accepted

Assuming that you know the resource names from the external source and are only lacking the capitalization, this function creates a dictionary you can use for lookups to align the two sets of names.

you know -> externally provided
MyBitmap -> MYBITMAP
myText -> MYTEXT

/// <summary>
/// Get a mapping of known resource names to embedded resource names regardless of capitlalization
/// </summary>
/// <param name="knownResourceNames">Array of known resource names</param>
/// <returns>Dictionary mapping known resource names [key] to embedded resource names [value]</returns>
private Dictionary<string, string> GetEmbeddedResourceMapping(string[] knownResourceNames)
{
   System.Reflection.Assembly assembly = System.Reflection.Assembly.GetExecutingAssembly();
   string[] resources = assembly.GetManifestResourceNames();

   Dictionary<string, string> resourceMap = new Dictionary<string, string>();

   foreach (string resource in resources)
   {
       foreach (string knownResourceName in knownResourceNames)
       {
            if (resource.ToLower().Equals(knownResourceName.ToLower()))
            {
                resourceMap.Add(knownResourceName, resource);
                break; // out of the inner foreach
            }
        }
    }

  return resourceMap;
}
link|improve this answer
This function addresses a slightly different scenario than the one I have, however, knowing about the existence of GetManifestResourceNames provides enough information for me to create a solution. Thanks. – Darrel Miller Jun 11 '09 at 1:08
Glad it helped! – Mark Jun 11 '09 at 1:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.