<完整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對象參考