ASP GetExtensionName 方法

定义和用法

GetExtensionName 方法返回包含指定路径中最后成分的文件扩展名的字符串。

语法:

  1. FileSystemObject.GetExtensionName(path)
参数 描述
path 必需的。需返回文件扩展名的文件的路径。

实例

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

输出:

  1. htm