UrlJoin
From kwiki
| | This article is written by Konrad, thus using rather nonstandard English:) |
UrlJoin (DNM Script function)
[edit]
full declaration
string UrlJoin (string strPath1,string strPath2)
[edit]
return value
[edit]
description
Function joins two parts of url, in the following example the function will return exactly the same result: "C:\Windows\notepad.exe":
var $s1=UrlJoin("C:\\Windows\\","notepad.exe");
MessageBox($s1);
var $s2=UrlJoin("C:\\Windows","notepad.exe");
MessageBox($s2);
