ASP GetExtensionName 方法


FileSystemObject 對象參考手冊 完整的 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
%>

輸出:

htm


FileSystemObject 對象參考手冊 完整的 FileSystemObject 對象參考手冊