I need to open a file for reading and writing. If the file is not found, it should be created. It should also be treated as a binary for Windows. Can you tell me the file mode sequence I need to use for this?
I tried ‘r+ab’ but that doesn’t create the files if they are not found.
Thanks
The mode is
ab+theris implied and ‘a’ppend and (‘w’rite ‘+’ ‘r’ead) are redundant. Since the CPython (i.e. regular python)fileis based on the C stdioFILEtype, here are the relevant lines from the fopen(3) man page:w+ Open for reading and writing.
The file is created if it does not
exist, otherwise it is truncated.
The stream is positioned at the
beginning of the file.
a+ Open for reading and appending (writing at end of file).
The file is created if it does not
exist. The initial file position
for reading is at the beginning of
the file, but output is always
appended to the end of the file.
With the “b” tacked on to make DOS happy. Presumably you want to do something like this: