最新的Web開發教程
 

ASP GetBaseName方法


<完整FileSystemObject對象參考

該GetBaseName方法返回在指定的路徑中的文件或文件夾的基本名稱。

句法

FileSystemObject.GetBaseName(path)

參數 描述
path 需要。 該文件或文件夾,其基本名稱的路徑將返回

<%
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
Response.Write(fs.GetBaseName("c:\winnt\cursors\3dgarro.cur"))
set fs=nothing
%>

Output:

3dgarro

<完整FileSystemObject對象參考