正则表达式文件路径验证

    /// 
    /// 文件路径验证
     /// 
    /// 
    /// 创建人:zhujt
/// 创建日期:2012-08-24 21:57:07 ///
/// /// public static bool CheckPath(string path) { string pattern = @"^[a-zA-Z]:(((\\(?! )[^/:*?<>\""|\\]+)+\\?)|(\\)?)\s*$"; Regex regex=new Regex(pattern); return regex.IsMatch(path); }

你可能感兴趣的:(NET)