Hello
How do I determine if a path is relative or absolute in Visual Basic Script.
In VBA, I'd call the Win32 Api function PathIsRelative
Private Declare Function PathIsRelative Lib "shlwapi" _
Alias "PathIsRelativeA" _
(ByVal pszPath As String) As Long
However, it's not possible to call into a DLL from VBS, so I cannot use the Win32 Api.
René