Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.