scripting:api:application:path-from-relative

PathFromRelative

Method of IApplication

Convert path from relative to full form

  • BSTR pstrPathAbsolute
var pstrPathAbsolute = Application.PathFromRelative(strPathRelative, bCheckExist);

==== Visual Basic Script ====

pstrPathAbsolute = Application.PathFromRelative strPathRelative, bCheckExist

==== C++ ====

BSTR pstrPathAbsolute;
HRESULT hr = Application.PathFromRelative(strPathRelative, bCheckExist, &pstrPathAbsolute);

===== See Also ===== IApplication