ASP GetParentFolderName 方法
asp getparentfoldername 方法

getparentfoldername 方法返回指定的路徑中最后成分的父文件夾的名稱(chēng)。
語(yǔ)法
filesystemobject.getparentfoldername(path)
參數(shù) | 描述 |
---|---|
path | 必需的。需返回其父文件夾名稱(chēng)的文件或文件夾的路徑。 |
實(shí)例
<%
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

相關(guān)文章