|">

去掉文件名中的无效字符,如 \ / : * ? " < > |

 /// 
        /// 去掉文件名中的无效字符,如 \ / : * ? " < > | 
        /// 
        /// 待处理的文件名
        /// 处理后的文件名
        public string ReplaceBadCharOfFileName(string fileName)
        {
            string str = fileName;
            str = str.Replace("\\", string.Empty);
            str = str.Replace("/", string.Empty);
            str = str.Replace(":", string.Empty);
            str = str.Replace("*", string.Empty);
            str = str.Replace("?", string.Empty);
            str = str.Replace("\"", string.Empty);
            str = str.Replace("<", string.Empty);
            str = str.Replace(">", string.Empty);
            str = str.Replace("|", string.Empty);
            str = str.Replace(" ", string.Empty);    //前面的替换会产生空格,最后将其一并替换掉
            return str;
        }

你可能感兴趣的:(去掉文件名中的无效字符,如 \ / : * ? " < > |)