I see there are two functions in autoit to download files from the internet: inetget and inetread.
What’s the difference between the two? The only difference I see is that inetGet has more options and is therefore better.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Inetget()supports background download (your script will continue its work while your file will keep downloading) and returns you a handle you can use withInetgetinfo().Inetreadcan do nothing of this.Read the manual carefully, everything is described there. 🙂
By the way, AutoIT’s doc is very good to me.