2014-09-22 16:22:56 +08:00
|
|
|
|
==========================
|
|
|
|
|
|
5.5 文件不存在才能写入
|
|
|
|
|
|
==========================
|
2014-08-21 10:27:10 +08:00
|
|
|
|
|
|
|
|
|
|
----------
|
|
|
|
|
|
问题
|
|
|
|
|
|
----------
|
2019-11-12 19:09:16 +08:00
|
|
|
|
你想向一个文件中写入数据,但是前提必须是这个文件在文件系统上不存在。
|
2014-09-22 16:22:56 +08:00
|
|
|
|
也就是不允许覆盖已存在的文件内容。
|
|
|
|
|
|
|
2014-08-21 10:27:10 +08:00
|
|
|
|
----------
|
|
|
|
|
|
解决方案
|
|
|
|
|
|
----------
|
2015-09-18 12:21:18 +08:00
|
|
|
|
可以在 ``open()`` 函数中使用 ``x`` 模式来代替 ``w`` 模式的方法来解决这个问题。比如:
|
2014-09-22 16:22:56 +08:00
|
|
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
|
|
|
|
>>> with open('somefile', 'wt') as f:
|
|
|
|
|
|
... f.write('Hello\n')
|
|
|
|
|
|
...
|
|
|
|
|
|
>>> with open('somefile', 'xt') as f:
|
|
|
|
|
|
... f.write('Hello\n')
|
|
|
|
|
|
...
|
|
|
|
|
|
Traceback (most recent call last):
|
|
|
|
|
|
File "<stdin>", line 1, in <module>
|
|
|
|
|
|
FileExistsError: [Errno 17] File exists: 'somefile'
|
|
|
|
|
|
>>>
|
|
|
|
|
|
|
|
|
|
|
|
如果文件是二进制的,使用 ``xb`` 来代替 ``xt``
|
|
|
|
|
|
|
2014-08-21 10:27:10 +08:00
|
|
|
|
----------
|
|
|
|
|
|
讨论
|
|
|
|
|
|
----------
|
2014-09-22 16:22:56 +08:00
|
|
|
|
这一小节演示了在写文件时通常会遇到的一个问题的完美解决方案(不小心覆盖一个已存在的文件)。
|
|
|
|
|
|
一个替代方案是先测试这个文件是否存在,像下面这样:
|
|
|
|
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
|
|
|
|
>>> import os
|
|
|
|
|
|
>>> if not os.path.exists('somefile'):
|
|
|
|
|
|
... with open('somefile', 'wt') as f:
|
|
|
|
|
|
... f.write('Hello\n')
|
|
|
|
|
|
... else:
|
|
|
|
|
|
... print('File already exists!')
|
|
|
|
|
|
...
|
|
|
|
|
|
File already exists!
|
|
|
|
|
|
>>>
|
|
|
|
|
|
|
|
|
|
|
|
显而易见,使用x文件模式更加简单。要注意的是x模式是一个Python3对 ``open()`` 函数特有的扩展。
|
|
|
|
|
|
在Python的旧版本或者是Python实现的底层C函数库中都是没有这个模式的。
|