ASP GetParentFolderName 方法
asp getparentfoldername 方法

getparentfoldername 方法返回指定的路徑中最后成分的父文件夾的名稱。
語法
filesystemobject.getparentfoldername(path)
參數(shù) | 描述 |
---|---|
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
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
