码迷,mamicode.com
首页 > 其他好文 > 详细

文件路径或者保存模板出现非法字符判断

时间:2015-06-10 15:46:45      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:

文件路径或者保存模板出现非法字符判断


1)string strTemplateName = txtTemplateName.Text;
            if (string.IsNullOrWhiteSpace(strTemplateName))
            {
                Show("请输入模板名称!", "提示", .Information, OK);
                txtTemplateName.Focus();
                return;
            }


2)然后对strTemplateName 进行非法字符判断

if (strTemplateName.IndexOfAny(Path.GetInvalidFileNameChars()) >= 0)
            {
                //含有非法字符 \ / : * ? " < > | 等
               Show("模板名称含有非法字符,请重新输入", "错误", Error, OK);
                txtTemplateName.Focus();
                return;
            }

3)path 引用系统的io 动态库即可。


文件路径或者保存模板出现非法字符判断

标签:

原文地址:http://blog.csdn.net/vbloveshllm/article/details/46441973

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!