ASP GetParentFolderName 方法
❮ FileSystemObject 对象完整参考
GetParentFolderName 方法返回指定路径中最后一个组件的父文件夹名称。
语法
FileSystemObject.GetParentFolderName(path)
参数 | 描述 |
---|---|
path | 必需。要返回其父文件夹名称的文件或文件夹的路径 |
示例
<%
dim fs,p
set fs=Server.CreateObject("Scripting.FileSystemObject")
p=fs.GetParentFolderName("c:\winnt\cursors\3dgarro.cur")
Response.Write(p)
set fs=nothing
%>
输出
c:\winnt\cursors
❮ FileSystemObject 对象完整参考