摘要: C#判断文件名是否合法,如下 private bool IsFileNameValid(string name) { bool isFilename = true; string[] errorStr =new string []{"/","\\",":",",","*","?","\"","","|"}; if (... 阅读全文
posted @ 2006-08-15 11:03 czh 阅读(3582) 评论(1) 推荐(0)