Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我看到 autoit 中有两个函数可以从 Internet 下载文件:inetget 和 inetread。
两者有什么区别?我看到的唯一区别是 inetGet 有更多选择,因此更好。
Inetget()支持后台下载(您的脚本将继续工作,而您的文件将继续下载)并返回您可以使用的句柄Inetgetinfo()。Inetread对此无能为力。
Inetget()
Inetgetinfo()
Inetread
仔细阅读手册,那里描述了所有内容。:) 顺便说一句,AutoIT 的文档对我很好。
有一个很大的不同!InetRead() 直接返回下载的字符串,因此您可以将其分配给变量,而 InetGet 需要一个文件名参数来存储,因此如果您定期获取一些数据,最好使用 inetread 来防止使用硬盘。