我想使用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 |
有什么建议吗?
- 请先搜索后问,这个问题已经问过并回答过了。
- stackoverflow.com/questions/82831/&hellip复制;
使用os.path.exists或os.path.isfile:
1 2 3
| >>> import os
>>> os.path.isfile('/path/to/file')
False |
查看os.path.exists。