C#从Url下载图像到NO特定文件夹

时间:2017-09-28 05:41:07

标签: c# image sharepoint download

我需要从SharePoint网站下载图片。 我有一个按钮,可以获取上面图像的URL,下载它。 但我希望用户可以选择他想要存储图像的位置。 那么如何在不设置特定文件夹的情况下从Url下载图像呢?

我只知道以下方法: webClient.Downloadfile - >需要一条路径来保存 Image.Save - >需要保存路径

我正在搜索像您这样的内容,右键单击浏览器中的图像并显示"将图像另存为"这正是我想要的

我的代码,我试图选择下载文件夹(我得到403 FORBIDDEN错误):

WebClient client = new WebClient();            
        client.Credentials = new NetworkCredential("*******", "******", "**");
        client.DownloadFile(new Uri(string.Concat("http://******/apps/bilddb/PrivateStore/", item.FileName)), String.Concat(@"C:\Users\", System.Security.Principal.WindowsIdentity.GetCurrent().Name, @"\Downloads"));

0 个答案:

没有答案