开发者

Network.downloadfile is very slow

开发者 https://www.devze.com 2022-12-27 17:54 出处:网络
I have tried using the My.Computer.Network.DownloadFile method but unfortunately it is slow. Executing the simple command below takes ~5-10 secs, which I would say is a lot longer than expected for do

I have tried using the My.Computer.Network.DownloadFile method but unfortunately it is slow. Executing the simple command below takes ~5-10 secs, which I would say is a lot longer than expected for downloading a 9 kb file.

`My.Computer.Network.DownloadFile("http://www.google.dk", "j:\temp\test.html")` 

I am connecting via a high-speed connection (>10GB) from a Win7 machine. Do anyo开发者_运维百科ne know of any explanations for this behavior?

Hope that you can help me out with this. Kristoffer


It could be the overhead in making the connection that makes it seems slow when it's such a small file, maybe for a bigger file it would be less noticeable.
Also, even if you have a fast connection from you to your ISP, your ISP might have a bad connection to google.dk, and are you the only one using it or could it be congested with other traffic?

I'd suggest trying to download other size files from other locations.


Try using a WebClient:

Using client = New WebClient()
    client.DownloadFile("http://www.google.dk", "j:\temp\test.html")
End Using
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号