I'm working on a MacOsX application that should analyze some files for me. I need to handle different file-extensions though. Right now I've got 7-8 arrays that I fill manually with file extensions.
Example array for programming-related files:
developmentExtArray = [[NSArray alloc] initWithObjects:
@"java",
@"class",
@"h",
@"m",
@"py",
nil];
I can analyze the filenames and check the string for the extension. This is a very, very odd solution because I can easily miss-spell or forget an extension. I've searched the web and the Apple Documentation for a solution but didn't find one. Do you guys have any idea how I can solve this more elegant?