Jump to content

INetGetSize


Recommended Posts

Hello,

I think I'm not understanding how this function is supposed to do work, please check out the code below and see what you think.

This is supposed to be an internet speed tester. It will download a file and time how long it takes. I've taken out the actual address. It returns a zero...

If anyone knows of a way to get Speedtest.net to be invisible or to save a screenshot or something that would be much better but it is out of my reach right now.

Thank you all, I really appreciate your input.

$begin = TimerInit()
Local $hDownload = InetGet("https://***.******.com/Document%20Library/Master%20Office%20Listing.xls", @DesktopDir & "\update.xls")
Do
    Sleep(10)
Until InetGetInfo($hDownload, 2)
$EndCount = Round ( (TimerDiff($begin)/1000) , 2 )
$avg = ($nBytes/$EndCount)
Local $nBytes = InetGetInfo($hDownload, 0)
InetClose($hDownload)
MsgBox(0, "", "Bytes read: " & $nBytes & ", at " & $avg & "per second")
Link to comment
Share on other sites

So I've redone a few things but I'm still getting a zero back.

Any ideas?

The help file seems very simple, can I not use the inet/get/size functions with xls or ppt files?

Global $hDownload = InetGet("https://***.***.***/Pinnacle.pptx", @DesktopDir & "Plastic.pptx", 1, 1)
Global $begin = TimerInit()
Do
Sleep(500)
Until InetGetInfo($hDownload, 2) ; Check if the download is complete.
$EndCount = TimerDiff($begin)
$hDownloadSize = InetGetSize("https://***.***.***/Pinnacle.pptx",1)
$avg = ($hDownloadSize / $EndCount)
Global $nBytes = InetGetInfo($hDownload, 0)
InetClose($hDownload) ; Close the handle to release resources.
MsgBox(0, "", "Bytes read: " & $hDownloadSize & " , at " & $avg & " per second")
Edited by Robonglious
Link to comment
Share on other sites

I haven't tried the script yet, but one thing I see is that $Endcount is going to be in milliseconds, not seconds, divide it by 1000 for seconds.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Can you try it with http instead of https? No idea if that would make any difference, but it can't hurt to try.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Maybe this topic has died but I'm having a sporadic issue with the finished product.

On certain machines it shows the connection as being super fast or super slow and I can't tell why. Could it be that Wiki doesn't want to keep serving up that file?

This is part of a bigger program.

I have only seen the problem on Windows XP it runs correctly each time on my Windows 7 machine.

Local $begin = TimerInit()
Local $hDownload = InetGet("http://upload.wikimedia.org/wikipedia/en/2/2f/EN004_Moon_with_a_Past.jpg", @TempDir & "Moon.jpg", 1, 0)
$EndCount = TimerDiff($begin / 1000)
$hDownloadSize = InetGetSize("http://upload.wikimedia.org/wikipedia/en/2/2f/EN004_Moon_with_a_Past.jpg", 1)
$avg = ($hDownloadSize / ($EndCount / 1000))
Local $nBytes = InetGetInfo($hDownload, 0)
InetClose($hDownload) ; Close the handle to release resources.


FileWrite($file, "Bytes read: " & (Round(($hDownloadSize / 1024), 2)) & "KB" & " , at " & Round($avg, 2) & "MB per second" & @CRLF)
Edited by Robonglious
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...