Returns file name with path added
| #include "String and File String.au3" _FileAddPath( $sFile ,$sPath [, $bUrl = False ] ) |
| $sFile | File name |
| $sPath | Path to add |
| $bUrl | True = Url, False = File path |
| string value | File name with path added |
_FileAddPath( "mybook.doc", "c:\my documents" ) ; "c:\my documents\mybook.doc"
_FileAddPath( "mybook.pdf", "https://www.mywebsite.com", True ) ; "https://www.mywebsite.com/mybook.pdf