open() in Python does not create a file if it doesn't exist

PythonLinuxFile IoFile Permissions

Python Problem Overview


What is the best way to open a file as read/write if it exists, or if it does not, then create it and open it as read/write? From what I read, file = open('myfile.dat', 'rw') should do this, right?

It is not working for me (Python 2.6.2) and I'm wondering if it is a version problem, or not supposed to work like that or what.

The bottom line is, I just need a solution for the problem. I am curious about the other stuff, but all I need is a nice way to do the opening part.

The enclosing directory was writeable by user and group, not other (I'm on a Linux system... so permissions 775 in other words), and the exact error was:

> IOError: no such file or directory.

Python Solutions


Solution 1 - Python

You should use open with the w+ mode:

file = open('myfile.dat', 'w+')

Solution 2 - Python

The advantage of the following approach is that the file is properly closed at the block's end, even if an exception is raised on the way. It's equivalent to try-finally, but much shorter.

with open("file.dat","a+") as f:
    f.write(...)
    ...

> a+ Opens a file for both appending and reading. The file pointer is > at the end of the file if the file exists. The file opens in the > append mode. If the file does not exist, it creates a new file for > reading and writing. -Python file modes

seek() method sets the file's current position.

f.seek(pos [, (0|1|2)])
pos .. position of the r/w pointer
[] .. optionally
() .. one of ->
  0 .. absolute position
  1 .. relative position to current
  2 .. relative position from end

> Only "rwab+" characters are allowed; there must be exactly one of "rwa" - see Stack Overflow question Python file modes detail.

Solution 3 - Python

'''
w  write mode
r  read mode
a  append mode

w+  create file if it doesn't exist and open it in write mode
r+  open for reading and writing. Does not create file.
a+  create file if it doesn't exist and open it in append mode
'''

example:

file_name = 'my_file.txt'
f = open(file_name, 'w+')  # open file in write mode
f.write('python rules')
f.close()

[FYI am using Python version 3.6.2]

Solution 4 - Python

Good practice is to use the following:

import os

writepath = 'some/path/to/file.txt'

mode = 'a' if os.path.exists(writepath) else 'w'
with open(writepath, mode) as f:
	f.write('Hello, world!\n')

Solution 5 - Python

Change "rw" to "w+"

Or use 'a+' for appending (not erasing existing content)

Solution 6 - Python

Since python 3.4 you should use pathlib to "touch" files.
It is a much more elegant solution than the proposed ones in this thread.

from pathlib import Path

filename = Path('myfile.txt')
filename.touch(exist_ok=True)  # will create file, if it exists will do nothing
file = open(filename)

Same thing with directories:

filename.mkdir(parents=True, exist_ok=True)

Solution 7 - Python

>>> import os
>>> if os.path.exists("myfile.dat"):
...     f = file("myfile.dat", "r+")
... else:
...     f = file("myfile.dat", "w")

r+ means read/write

Solution 8 - Python

My answer:

file_path = 'myfile.dat'
try:
    fp = open(file_path)
except IOError:
    # If not exists, create the file
    fp = open(file_path, 'w+')

Solution 9 - Python

Use:

import os

f_loc = r"C:\Users\Russell\Desktop\myfile.dat"

# Create the file if it does not exist
if not os.path.exists(f_loc):
    open(f_loc, 'w').close()

# Open the file for appending and reading
with open(f_loc, 'a+') as f:
    #Do stuff

Note: Files have to be closed after you open them, and the with context manager is a nice way of letting Python take care of this for you.

Solution 10 - Python

open('myfile.dat', 'a') works for me, just fine.

in py3k your code raises ValueError:

>>> open('myfile.dat', 'rw')
Traceback (most recent call last):
  File "<pyshell#34>", line 1, in <module>
    open('myfile.dat', 'rw')
ValueError: must have exactly one of read/write/append mode

in python-2.6 it raises IOError.

Solution 11 - Python

For Python 3+, I will do:

import os

os.makedirs('path/to/the/directory', exist_ok=True)

with open('path/to/the/directory/filename', 'w') as f:
    f.write(...)

So, the problem is with open cannot create a file before the target directory exists. We need to create it and then w mode is enough in this case.

Solution 12 - Python

What do you want to do with file? Only writing to it or both read and write?

'w', 'a' will allow write and will create the file if it doesn't exist.

If you need to read from a file, the file has to be exist before open it. You can test its existence before opening it or use a try/except.

Solution 13 - Python

I think it's r+, not rw. I'm just a starter, and that's what I've seen in the documentation.

Solution 14 - Python

Put w+ for writing the file, truncating if it exist, r+ to read the file, creating one if it don't exist but not writing (and returning null) or a+ for creating a new file or appending to a existing one.

Solution 15 - Python

If you want to open it to read and write, I'm assuming you don't want to truncate it as you open it and you want to be able to read the file right after opening it. So this is the solution I'm using:

file = open('myfile.dat', 'a+')
file.seek(0, 0)

Solution 16 - Python

So You want to write data to a file, but only if it doesn’t already exist?.

This problem is easily solved by using the little-known x mode to open() instead of the usual w mode. For example:

 >>> 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'
  >>>

If the file is binary mode, use mode xb instead of xt.

Solution 17 - Python

import os, platform
os.chdir('c:\\Users\\MS\\Desktop')

try :
    file = open("Learn Python.txt","a")
    print('this file is exist')
except:
    print('this file is not exist')
file.write('\n''Hello Ashok')

fhead = open('Learn Python.txt')

for line in fhead:
    
    words = line.split()
print(words)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questiontrh178View Question on Stackoverflow
Solution 1 - PythonmuksieView Answer on Stackoverflow
Solution 2 - PythonQwertyView Answer on Stackoverflow
Solution 3 - PythonGajendra D AmbiView Answer on Stackoverflow
Solution 4 - PythonlollercoasterView Answer on Stackoverflow
Solution 5 - PythonbalooView Answer on Stackoverflow
Solution 6 - PythonGranitosaurusView Answer on Stackoverflow
Solution 7 - PythonKhorkrakView Answer on Stackoverflow
Solution 8 - PythonChien-Wei HuangView Answer on Stackoverflow
Solution 9 - Pythonhostingutilities.comView Answer on Stackoverflow
Solution 10 - PythonSilentGhostView Answer on Stackoverflow
Solution 11 - PythonChenglong MaView Answer on Stackoverflow
Solution 12 - Pythonuser49117View Answer on Stackoverflow
Solution 13 - PythonAngel PoppyView Answer on Stackoverflow
Solution 14 - PythonGustavo6046View Answer on Stackoverflow
Solution 15 - PythonDanilo Souza MorãesView Answer on Stackoverflow
Solution 16 - PythonStephen NgetheView Answer on Stackoverflow
Solution 17 - PythonGanesh JatView Answer on Stackoverflow