我不明白为什么这样的东西不起作用(在C#中):
// Download the file to a specified path. Using the WebClient class we can download
// files directly from a provided url, like in this case.
System.Net.WebClient client = new WebClient();
client.DownloadFile(url, csvPath);
Run Code Online (Sandbox Code Playgroud)
其中url是包含csv文件的站点,而csvPath是您希望实际文件的位置.