如何在ASP中检查文件是否为文本文件

时间:2010-07-05 07:34:14

标签: file-io asp-classic

如何在ASP

中检查文件是否为文本文件

1 个答案:

答案 0 :(得分:0)

<%
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
Response.Write(fs.GetExtensionName("c:\test\test.htm"))
set fs=nothing
%>

Output:

htm