File Type Extension

See all posts Reply

File Type Extension new!
by Eddie, 10 years, 12 months ago
when uploading my files, I'm trying to distinguish what file type they are (.pdf, .jpg, .xls etc) so that I can send it back via json. Is there something I can add to the upload script to be able to differentiate them and get this info?Reply
Re: File Type Extension new!
by colin, 10 years, 12 months ago
You should use MIME type rather than extension to determine the type of file.

After instantiating the class, you can read the extension in file_src_name_ext and the MIME in file_src_mime.Reply