如何使用Python 3检索.msg和.MSG文件?

时间:2019-11-21 13:20:20

标签: python-3.x outlook

以下Python代码仅检索“ .msg”文件

files = [f for f in os.listdir(path) if '.msg' in f]

如何添加它,以便它也可以检索“ .MSG”文件?

1 个答案:

答案 0 :(得分:0)

files = [f for f in os.listdir(path) if '.msg' in f or '.MSG' in f]

您可以使用orand

链接列表理解中的条件。