_DownloadFile

Download file dialogue, downloads a file from given url

#include "Dialogue.au3"
_DownloadFile( $sURL [, $sFile = @MyDocumentsDir & "\DownloadedFile" [, $sTitle = _DialogueTitle() [, $sDownloadLabel = "" ]]] )

parameters

$sFile File to download to
$sTitle Title of dialogue, if empty title set by _DialogueTitle() is used
$sDownloadLabel Label text under download progress bar

return value

boolean value True = Downloaded successful, False = Aborted or download error

related

_DialogueTitle

example

_DownloadFile( "https://sourceforge.net/projects/peace-equalizer-apo-extension/files/PeaceSetup.exe/download", @MyDocumentsDir & "\PeaceSetup.exe" )