如何使用Python检查目录中核心文件的存在
这个问题在这里已经有了答案:
使用内置的glob
模块:
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
这可能是愚蠢的,这是解决方案吗?
import os
os.path.isfile(os.path.join(path,corename))
另外os lib可以为你做诡计,返回true或false
import os
os.path.exists(dir_or_file_to_check)
上一篇: how to check existence of a core files in directory using Python