Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
256 views
in Technique[技术] by (71.8m points)

asp classic - mimetype file with asp

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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...