METHOD:  FileSystemObject.GetAbsolutePathName

Implemented in version 2.0
 
object.GetAbsolutePathName(path)

This method returns the complete path from the root of the drive for the specified path string.

The following examples assume that the current directory is c:\DevGuru\website
Code:
<%
dim filesys, pathstring
set filesys=CreateObject("Scripting.FileSystemObject")
pathstring = filesys.GetAbsolutePathName("c:") %>


Output:
"c:\DevGuru\website"

Code:
<%
dim filesys, pathstring
set filesys=CreateObject("Scripting.FileSystemObject")
pathstring = filesys.GetAbsolutePathName("VBScript.html")
%>


Output:
"c:\DevGuru\website\VBScript.html"


Copyright 1999-2004 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information