<完整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
%>
Output:
c:\winnt\cursors
<完整FileSystemObject对象参考