最新的Web开发教程
 

ASP GetExtensionName方法


<完整FileSystemObject对象参考

该GetExtensionName方法返回一个包含在指定的路径中最后一个组件的文件扩展名的字符串。

句法

FileSystemObject.GetExtensionName(path)

参数 描述
path 需要。 对于其文件扩展名的文件的路径将返回

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

Output:

htm

<完整FileSystemObject对象参考