http://www.bilibili.com/video/av9784617?from=search&seid=4789969907129537329
2022-03-22
#匹配文件名要求, 不区分大小写
fnmatch.fnmatch(filename, pattern)
fnmathc.fnmatch('txt.py', '*.Py') # True
#匹配文件名是否符合要求,区分大小写
fnmatch.fnmatchcase(filename, pattern)
fnmatch.fnmatchcase('txt.py', '*.py') # True
fnmatch.fnmatch(filename, pattern)
fnmathc.fnmatch('txt.py', '*.Py') # True
#匹配文件名是否符合要求,区分大小写
fnmatch.fnmatchcase(filename, pattern)
fnmatch.fnmatchcase('txt.py', '*.py') # True
2020-01-25