是否匹配正则表达式
bool matches(String regex) { var file = this; if (file == null || file.isEmpty) { return false; } return RegExp(regex).hasMatch(file); }