嘿我目前正在使用一个组件,我需要在其中加载文件的路径。
现在我的计划最初只是使用文件的URL,因为它们托管在网络上,但遗憾的是这个组件只能加载本地保存的文件。
所以现在我想在我可以加载这个组件中的文件之前我需要首先保存文件,
那么我将如何在.net
中解决这个问题1)致电URL 2)将文件保存到本地文件夹
答案 0 :(得分:2)
使用WebClient类下载:
using (WebClient client = new WebClient())
{
client.DownloadFile("http://the.address.com/TheImage.tiff", @"C:\TheImage.tiff");
}