<完整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對象參考