My program wants add subdirectories to a directory depending on the different file-types in the directory.

For example it needs to make a 'Music'-folder whenever it encounters a .mp3 file. If there is a .jpg in the directory too, it should add an 'Images'-folder.

Now what I'm obviously looking for is some kind of database or lib that I can use to identify the file-type of any file extension.

Anybody knows where I might find this?

(I have been searching for quite a while, and the best I found was this site that does seem to contain the info that I need, but it doesn't seem too easy to get this info into an easy to use database) http://www.findfiles.net/file-formats

Thanks for any advice on where to try and search for this

link|improve this question
Have a look at this discussion. – Szilard Barany Feb 10 at 10:41
It should be fairly easy to convert the data on findfiles.net/file-formats to a format that is easy to load into database (e.g. CSV). Each extension's details are in a single line, so a fairly simple awk script can parse out the info you need. – Szilard Barany Feb 10 at 10:45
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.