Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想检查给定的路径是否与类似的搜索模式匹配*.*or report*.txt。
*.*
report*.txt
Directory.GetFiles (root, "*.txt")或类似的不应该被使用(有问题的文件甚至不存在)。
Directory.GetFiles (root, "*.txt")
我的第一个想法是将搜索模式翻译为正则表达式,但我记得搜索模式有时表现得有些奇怪(可能是出于历史原因),因此可能不容易翻译。