取得文件或文件夹的基名称
代码:
<!DOCTYPE html><html>
<body>
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
Response.Write(fs.GetBaseName("c:\winnt\cursors\3dgarro.cur"))
Response.Write("<br>")
Response.Write(fs.GetBaseName("c:\winnt\cursors\"))
Response.Write("<br>")
Response.Write(fs.GetBaseName("c:\winnt\"))
set fs=nothing
%>
</body>
</html>
结果:
3dgarro
cursors
winnt
相关文章
- ASP ASPError 对象
- ASP 教程
- ASP AtEndOfStream 属性
- ASP Close 方法
- ASP RemoveAll 方法
- ASP AddHeader 方法
- ASP AppendToLog 方法
- ASP Contents 集合
- ASP Drives 属性
- ASP CopyFolder 方法
- ASP GetAbsolutePathName 方法
- ASP GetDrive 方法
- ASP GetDriveName 方法
- ASP GetFileName 方法
- ASP GetParentFolderName 方法
- ASP GetSpecialFolder 方法
- ASP.NET HtmlInputCheckBox 控件
- ASP.NET HtmlInputText 控件
- ASP Transfer 方法
- 创建 welcome cookie