gpt4 book ai didi

c# - 我怎样才能直接从url上传文件到服务器

转载 作者:行者123 更新时间:2023-12-02 19:42:53 25 4
gpt4 key购买 nike

如何直接从 url 上传文件而不下载文件并将其上传到服务器?

就像我有一个链接

http://whatever/test.pdf

将其放入文本框并上传!!

最佳答案

使用System.Net.WebClient:

var url = textBox1.Text;

var client = new System.Net.WebClient();
client.DownloadFile(url, "c:\\path-to-save-file-on-server\\test.pdf");

关于c# - 我怎样才能直接从url上传文件到服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11921861/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com