函数参考


InetClose

关闭一个由 InetGet() 返回的句柄.

InetClose ( 句柄 )

参数

句柄 由 InetGet() 函数返回的句柄.

返回值

成功: 如果句柄找到并关闭,返回 True
失败: 返回 False .

注意/说明

InetGet() 句柄必须关闭,不然资源会残留不释放.

当在下载过程中关闭句柄会导致取消下载.

相关

InetGet

示例/演示


Local $hDownload = InetGet("http://www.autoitscript.com/autoit3/files/beta/update.dat", @TempDir & "\update.dat", 1, 1)
Do
    Sleep(250)
Until InetGetInfo($hDownload, 2);检查下载是否完成.
Local $nBytes = InetGetInfo($hDownload, 0)
InetClose($hDownload);关闭句柄, 释放资源.
MsgBox(4096, "", "Bytes read: " & $nBytes)