标签: python-3.x outlook
以下Python代码仅检索“ .msg”文件
files = [f for f in os.listdir(path) if '.msg' in f]
如何添加它,以便它也可以检索“ .MSG”文件?
答案 0 :(得分:0)
files = [f for f in os.listdir(path) if '.msg' in f or '.MSG' in f]
您可以使用or和and
or
and