当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP > ASP GetFileName 方法
The GetFileName method returns a string that contains the file name or folder name for the last component in a specified path.
ASP GetFileName的作用是返回指定路径下最后一个组件所包含的文件名或文件夹名的字符串
FileSystemObject.GetFileName(path) |
Parameter参数 | Description描述 |
---|---|
path | Required. The path to a specific file or folder 必要组件。设置指定的文件或文件夹的路径 |
<% dim fs,p set fs=Server.CreateObject("Scripting.FileSystemObject") p=fs.getfilename("c:testtest.htm") response.write(p) set fs=nothing %> Output: test.htm <% dim fs,p set fs=Server.CreateObject("Scripting.FileSystemObject") p=fs.getfilename("c:test") response.write(p) set fs=nothing %> Output: test |