scripting:api:application:path-to-relative

PathToRelative

Method of IApplication

Convert path to relative form

  • BSTR strPathAbsolute
  • BSTR pstrPathRelative
var pstrPathRelative = Application.PathToRelative(strPathAbsolute);

==== Visual Basic Script ====

pstrPathRelative = Application.PathToRelative strPathAbsolute

==== C++ ====

BSTR pstrPathRelative;
HRESULT hr = Application.PathToRelative(strPathAbsolute, &pstrPathRelative);

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