Quick References
ADO
ASP
CSS2
HTML
JavaScript
Jet SQL
VBScript
WML
WMLScript
WSH
XHTML
XML DOM
XSLT
Features
Knowledge Base
Tutorials
Partners
ZVON.ORG
XML
Planet Source Code
VisualBuilder
Web Design
Your HTML Source
XML/XSLT Forums
ASPAlliance
Scripts
Programmers Heaven
Tek-Tips Forums
Developer Fusion
Code Project
All Methods
FileSystemObject Object
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-2005 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information