mimetype file with asp

醉酒当歌 提交于 2019-12-25 04:43:04

问题


Is there a way to get the mimetype of a file by using asp? If just have the path to the file.


回答1:


One possible way of doing this would be to take the file extension of the file and look up the Registry key HKEY_CLASSES_ROOT\<file extension>. There should be a "Content Type" value under this key that gives the MIME type of the file, at least for the most popular file types.

This assumes the file extension is a reliable indicator of the file's contents. On Unix, there is the file command which can look for "magic numbers" inside the file and can return the correct file type even if the extension is wrong. A port of this utility exists for Windows. You might be able to execute it from ASP and capture its output.



来源:https://stackoverflow.com/questions/3414218/mimetype-file-with-asp

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!