python glob 默认无法找到 没有文件名只有扩展名的文件!
因为 .txt
这样以·.·开头的文件是被视作隐藏文件的,glob默认不予支持
因此有两种解决方法
Note that files beginning with a dot (.) can only be matched by patterns that also start with a dot, unlike fnmatch.fnmatch() or pathlib.Path.glob(). (For tilde and shell variable expansion, use os.path.expanduser() and os.path.expandvars().
采用多个glob语句
- os.walk
本博文本意在于记录个人的思考与经验,部分博文采用英语写作,可能影响可读性,请见谅
本文来自博客园,作者:ZXYFrank,转载请注明原文链接:https://www.cnblogs.com/zxyfrank/p/16348946.html