How do I check whether a file exists without exceptions?

后端 未结 30 2000
北海茫月
北海茫月 2020-11-21 05:07

How do I check if a file exists or not, without using the try statement?

30条回答
  •  时光取名叫无心
    2020-11-21 05:43

    You can use the "OS" library of Python:

    >>> import os
    >>> os.path.exists("C:\\Users\\####\\Desktop\\test.txt") 
    True
    >>> os.path.exists("C:\\Users\\####\\Desktop\\test.tx")
    False
    

提交回复
热议问题