c# winform webclient 下载的URL问题
stringURL="";WebClientclient=newWebClient();stringfileName=URL.Substring(URL.LastInde...
string URL = "";
WebClient client = new WebClient();
string fileName = URL.Substring(URL.LastIndexOf("\\") + 1); //被下载的文件名
string Path = "C:\\Download\\" + fileName; //另存为的绝对路径+文件名
WebRequest myre = WebRequest.Create(URL);
client.DownloadFile(URL, Path);
我想知道如果在本地测试的话,url直接打绝对路径就行了,但是如果要从某个服务器的文件夹中下文件,那么url应该怎么打是“http://IP/文件夹/文件”这样吗
文件放在d盘某个文件夹中,用http://IP/文件夹/文件这种,怎么知道是哪个盘?自动找的?
url="http:\\\\IP\\Program Files\\jakarta-tomcat-5.5.9\\webapps\\ROOT\\specialcontract_list\\aa.pdf"
就报错了
无效的 URI: 无法分析主机名。
不支持 URI 格式。 展开
WebClient client = new WebClient();
string fileName = URL.Substring(URL.LastIndexOf("\\") + 1); //被下载的文件名
string Path = "C:\\Download\\" + fileName; //另存为的绝对路径+文件名
WebRequest myre = WebRequest.Create(URL);
client.DownloadFile(URL, Path);
我想知道如果在本地测试的话,url直接打绝对路径就行了,但是如果要从某个服务器的文件夹中下文件,那么url应该怎么打是“http://IP/文件夹/文件”这样吗
文件放在d盘某个文件夹中,用http://IP/文件夹/文件这种,怎么知道是哪个盘?自动找的?
url="http:\\\\IP\\Program Files\\jakarta-tomcat-5.5.9\\webapps\\ROOT\\specialcontract_list\\aa.pdf"
就报错了
无效的 URI: 无法分析主机名。
不支持 URI 格式。 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询