取得某个指定路径的父文件夹的名称
代码:
<!DOCTYPE html><html>
<body>
<%
Set fs=Server.CreateObject("Scripting.FileSystemObject")
p=fs.GetParentFolderName("c:\winnt\cursors\3dgarro.cur")
Response.Write("The parent folder name of c:\winnt\cursors\3dgarro.cur is: " & p)
set fs=nothing
%>
</body>
</html>
结果:
The parent folder name of c:\winnt\cursors\3dgarro.cur is: c:\winnt\cursors
相关文章
- ASP 程序
- ASP 简介
- ASP ReadLine 方法
- ASP WriteLine 方法
- ASP SubFolders 集合
- ASP CacheControl 属性
- ASP BinaryWrite 方法
- ASP Flush 方法
- ASP Form 集合
- ASP Timeout 属性
- ASP DeleteFile 方法
- ASP GetParentFolderName 方法
- ASP OpenTextFile 方法
- ASP.NET HtmlInputFile 控件
- ASP.NET SelectedIndex 属性
- GET表单
- 如何使用来自表单的信息
- 创建 welcome cookie
- 探测用户发送的字节总数
- 指定的文件存在吗?