downloading a specific file
Posted: Sat Mar 05, 2022 8:12 am
On windows Seven I have difficulty downloading a specific file directly from a remote url and therefore I have to use this command
Now I would have the problem of locating the downloaded file presumably in the download folder of the window
since I can't force my folder where to download the file
how do i calculate the exact route in windows seven?
Code: Select all | Expand
IF IsWinNT() .OR. isWin2000() // XP/2000/NT
WinExec( "rundll32.exe url.dll, FileProtocolHandler " + cUrl, 0 )
ELSE
WinExec( "Start " + cUrl, 0 )
ENDIF
Now I would have the problem of locating the downloaded file presumably in the download folder of the window
since I can't force my folder where to download the file
how do i calculate the exact route in windows seven?