Python中的文件测试?

18 浏览
0 Comments

Python中的文件测试?

This question already has answers here:

How do I check whether a file exists without exceptions?

我想使用Python 3.3.3来测试备份文件是否存在。

像这样:

if backup does not exist:
    create it
    write to backup
otherwise:
    run other procedures not related to backup file

有什么建议吗?

admin 更改状态以发布 2023年5月21日
0
0 Comments

请查看os.path.exists

0
0 Comments

使用os.path.existsos.path.isfile

>>> import os
>>> os.path.isfile('/path/to/file')
False

0