将个人资料图片从“我的网站”下载到本地文件夹中?

发布于 2024-11-04 09:23:43 字数 69 浏览 1 评论 0原文

我正在努力将个人资料图片从我的网站下载到本地驱动器中。我不明白如何理解这个概念。请有人给出一个想法或代码步骤。这会有帮助的。

I am working on download profile picture from my sites into local drive. I don't understand how to approach that concept. Please some one give an idea or code steps. That will be helpful.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

偏爱自由 2024-11-11 09:23:43

这只是一个网站...

怎么样:

using (WebClient client = new WebClient())
{
    client.DownloadFile(url, filePath);
}

StackOverflow

It's just a web site...

How about:

using (WebClient client = new WebClient())
{
    client.DownloadFile(url, filePath);
}

Courtesy of StackOverflow

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文