<完整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对象参考