使用 webclient 下载大文件时获取 "An exception occurred during a WebClient request"

Getting "An exception occurred during a WebClient request" while download the large file using webclient

我在 c# 中使用 webclient 下载 4.5GB 大小的文本文件时遇到上述错误。

WebClient wc = new WebClient();
wc.DownloadFile(DownloadFromURIpath, DownloadTOPath);

我将文件分成两半,现在正在下载successfully.There似乎导入超过 3 GB 的文件时出现问题。
webclient 下载文件有限制吗? 有人知道是什么原因造成的吗?

谢谢, Kavin.S

尝试 wc.DownloadFileAsync() 或按照提到的内容进行操作 here