tags:

views:

18

answers:

1

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.

+1  A: 

Inetget() supports background download (your script will continue its work while your file will keep downloading) and returns you a handle you can use with Inetgetinfo(). Inetread can do nothing of this.

Read the manual carefully, everything is described there. :)
By the way, AutoIT's doc is very good to me.

be here now
Autoit has amazing documentation, almost all basic questions can be answered there. If you're going to write anything in autoit, read through it all at least once.
MaQleod
I did read the docs. I meant for my question to really ask _why_ Inetget is simply superior. It always feels weird to me to have duplicated effort and purpose between two functions with no explanation as to why two functions serve the exact same purpose.But you did answer the question I asked. As far as I can figure out, Inetread is something like the lower level function which inetget is a wrapper around.
Thr4wn

related questions