_FileAddPath

Returns file name with path added

#include "String and File String.au3"
_FileAddPath( $sFile ,$sPath [, $bUrl = False ] )

parameters

$sFile File name
$sPath Path to add
$bUrl True = Url, False = File path

return value

string value File name with path added

related

_FilePath, _FileSetPath

examples

_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