使用Python的.gitignore样式fnmatch()最简单的方法是什么?看起来stdlib不提供match()函数,该函数将路径规范与UNIX样式路径正则表达式匹配。
.gitignore具有通配符的路径和文件(黑色)列出
如果要使用.gitignore示例中列出的混合UNIX通配符模式,为什么不采用每个模式并将fnmatch.translate
与re.search
一起使用?
import fnmatch
import re
s = '/path/eggs/foo/bar'
pattern = "eggs/*"
re.search(fnmatch.translate(pattern), s)
# <_sre.SRE_Match object at 0x10049e988>
translate
将通配符模式转换为重新模式
隐藏的UNIX文件:
s = '/path/to/hidden/.file'
isHiddenFile = re.search(fnmatch.translate('.*'), s)
if not isHiddenFile:
# do something with it
现在有一个名为pathspec的库,它实现了完整的.gitignore
规范,包括像**/*.py
这样的东西; documentation没有详细描述选项,但表示它与git兼容,并且code处理它们。
>>> import pathspec
>>> spec_src = '**/*.pyc'
>>> spec = pathspec.PathSpec.from_lines(pathspec.patterns.GitWildMatchPattern,, spec_src.splitlines())
>>> set(spec.match_files({"test.py", "test.pyc", "deeper/file.pyc", "even/deeper/file.pyc"}))
set(['test.pyc', 'even/deeper/file.pyc', 'deeper/file.pyc'])
>>> set(spec.match_tree("pathspec/"))
set(['__init__.pyc', 'gitignore.pyc', 'util.pyc', 'pattern.pyc', 'tests/__init__.pyc', 'tests/test_gitignore.pyc', 'compat.pyc', 'pathspec.pyc'])