Python中的文件测试?

本问题已经有最佳答案,请猛点这里访问。

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

是这样的:

1
2
3
4
5
6
if backup does not exist:
    create it
    write to backup

otherwise:
    run other procedures not related to backup file

有什么建议吗?


使用os.path.existsos.path.isfile:

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


查看os.path.exists。