최신 웹 개발 튜토리얼
 

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
%>

Output:

c:\winnt\cursors

<전체 FileSystemObject 개체 참조