本问题已经有最佳答案,请猛点这里访问。
我想解析一些程序的日志,我想检查日志目录中是否存在核心文件。
假设
使用内置的
1 2 3 | import glob if glob.glob('/path/to/dir/core*'): print('At least one core file present in /path/to/dir') |
更多阅读:https://docs.python.org/3/library/glob.html
os lib也可以帮你,返回true或false
这可能是欺骗,这是解决方案吗?
1 2 | import os os.path.isfile(os.path.join(path,corename)) |