Gets the directory components of the path in this Url, excluding the filename.
Namespace: Facilita.WebAssembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.7.98 (1.0.0.0)
Syntax
Field Value
The directory components of the path in this Url, excluding the filename, or an empty string if this Url has no path component.Examples
new Url("http://www.myCompany.co.uk/").DirectoryPath; // returns "/" new Url("http://www.myCompany.co.uk/directory/index.php").DirectoryPath; // returns "/directory" new Url("http://www.myCompany.co.uk/directory/subdirectory/").DirectoryPath; // returns "/directory/subdirectory"
See Also