求助,C#上传文件时错误:路径中具有非法字符

我是个菜鸟,在写程序时出现错误,路径中具有非法字符。怎么解决阿?!Stringhttp="//10.118.4.66:7021/dianneng/processuploa... 我是个菜鸟,在写程序时出现错误,路径中具有非法字符。怎么解决阿?!

String http = "//10.118.4.66:7021/dianneng/processuploadfile.jsp?sender_app=ecm&upload_date=2007.01.15&device_type=02&dm_type=02";
WebClient myWebClient = new WebClient();
string fileName = MIS.MisInfo.CurMidDBPath.ToString();//如d:\\111.txt
byte[] responseArray = myWebClient.UploadFile(http, "POST", fileName);
MessageBox.Show("上传文档成功!");
我改成"\\"还是出现“路径中具有非法字符”
展开
 我来答
tattackor
推荐于2018-05-17 · TA获得超过3.5万个赞
知道大有可为答主
回答量:5083
采纳率:94%
帮助的人:905万
展开全部

1.windows的目录中允许出现的字符是有限定的,不允许出现的字符可以通过Path..GetInvalidFileNameChars()得到,下面是过滤目录中非法字符的方法:


string illegal = "\"M\"\\a/ry/ h**ad:>> a\\/:*?\"| li*tt|le|| la\"mb.?";
string invalid = new string(Path.GetInvalidFileNameChars()) + new string(Path.GetInvalidPathChars());
foreach (char c in invalid)
{
    illegal = illegal.Replace(c.ToString(), ""); 
}

2.也可以使用正则表达式来做替换,如下代码:

string illegal = "\"M\"\\a/ry/ h**ad:>> a\\/:*?\"| li*tt|le|| la\"mb.?";
string regexSearch = new string(Path.GetInvalidFileNameChars()) + new string(Path.GetInvalidPathChars());
Regex r = new Regex(string.Format("[{0}]", Regex.Escape(regexSearch)));
illegal = r.Replace(illegal, "");
谢抢来
2007-06-26 · TA获得超过262个赞
知道小有建树答主
回答量:819
采纳率:0%
帮助的人:408万
展开全部
"\\10.118.4.66:7021\\dianneng\\processuploadfile.jsp?sender_app=ecm&upload_date=2007.01.15&device_type=02&dm_type=02";
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式