ASP GetBaseName 方法

定义和用法

GetBaseName 方法返回指定路径中的文件或文件夹的基准名称。

语法:

  1. FileSystemObject.GetBaseName(path)
参数 描述
path 必需的。其基准名称需被返回的文件或文件夹的路径。

实例

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

输出:

  1. 3dgarro