vote up 0 vote down star
3

Hi,

I'd like to create a speed test to test the connection. What I would like is a 15sec download which then gives me the average download speed.

Anyone knows how to create this? or has a better idea to make a speed test?

Thanks for reading!

flag

3 Answers

vote up 2 vote down

This sample will try to download googletalk, and then outputs details of the download.

ps. when trying to time and operation avoid using DateTime as they can cause problems or inacurecy, always use Stopwatch available at System.Diognostics namespace.

    const string tempfile = "tempfile.tmp";
    System.Net.WebClient webClient = new System.Net.WebClient();

    Console.WriteLine("Downloading file....");

    System.Diagnostics.Stopwatch sw = System.Diagnostics.Stopwatch.StartNew();
    webClient.DownloadFile("http://dl.google.com/googletalk/googletalk-setup.exe", tempfile);
    sw.Stop();

    FileInfo fileInfo = new FileInfo(tempfile);
    long speed = fileInfo.Length / sw.Elapsed.Seconds;

    Console.WriteLine("Download duration: {0}", sw.Elapsed);
    Console.WriteLine("File size: {0}", fileInfo.Length.ToString("N0"));
    Console.WriteLine("Speed: {0} bps ", speed.ToString("N0"));

    Console.WriteLine("Press any key to continue...");
    Console.ReadLine();
link|flag
When trying to profile code at a very fine level avoid DateTime.Now(). But for something like a file download (which takes way longer than the precision of Now), it is just fine. – colithium Jul 5 at 20:47
Or use 'QueryPerformanceFrequency' and 'QueryPerformanceCounter' as timer. – Icebob Jul 6 at 7:29
why go through the trouble of using performance counters or even DateTime.Now when Stopwatch is easy to use and built for this purpose. it also makes your code easy to understand since its obvious that you are timing a function. – Keivan Jul 6 at 20:18
vote up 0 vote down

In Visual Basic dot net, the "My" class provide a function to download files, try to search for its alias in C#. Then create a timer counter and count seconds ellapsed since the download began.

link|flag
vote up 2 vote down
  • Use a known file size and trap how long it takes to download. (using two DateTime.now()s)

There is a library on CodeProject that I found. It is a couple of C# classes that let you monitor your network connections including upload and download speeds. Link here

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.