최신 웹 개발 튜토리얼
 

ASP GetAbsolutePathName 방법


<전체 FileSystemObject 개체 참조

GetAbsolutePathName 방법은 지정된 경로에 대한 드라이브의 루트에서 전체 경로를 반환합니다.

통사론

FileSystemObject.GetAbsolutePathName(path)

매개 변수 기술
path 필요합니다. 경로는 전체 경로로 변경

\ 임시 \ 테스트 : 현재 디렉토리가 c 있다고 가정합니다 :

예 1

<%
dim fs,path
set fs=Server.CreateObject("Scripting.FileSystemObject")
path=fs.GetAbsolutePathName("c:")
response.write(path)
%>

Output:

c:\temp\test

예 2

<%
dim fs,path
set fs=Server.CreateObject("Scripting.FileSystemObject")
path=fs.GetAbsolutePathName("mydoc.txt")
response.write(path)
%>

Output:

c:\temp\test\mydoc.txt

예 3

<%
dim fs,path
set fs=Server.CreateObject("Scripting.FileSystemObject")
path=fs.GetAbsolutePathName("private\mydoc.txt")
response.write(path)
%>

Output:

c:\temp\test\private\mydoc.txt

<전체 FileSystemObject 개체 참조