Hello,
I am attempting to save pdf files from a work website.
I know inetget allows to save a specific file from a website, but is it possible to specify a file 'type' instead of the specific file name?
In other words,
; Advanced example - downloading in the background
Local $hDownload = InetGet("http://myworksite/folder/dir", @TempDir & "\*.pdf", 1, 1)
Do
Sleep(250)
Until InetGetInfo($hDownload, 2) ; Check if the download is complete.
Local $nBytes = InetGetInfo($hDownload, 0)
I