Difference between the access modes of the `File` object (ie. w+, r+) Difference between the access modes of the `File` object (ie. w+, r+) ruby ruby

Difference between the access modes of the `File` object (ie. w+, r+)


See http://www.tutorialspoint.com/ruby/ruby_input_output.htm

To quote:

r
Read-only mode. The file pointer is placed at the beginning of the file. This is the default mode.

r+
Read-write mode. The file pointer will be at the beginning of the file.

w
Write-only mode. Overwrites the file if the file exists. If the file does not exist, creates a new file for writing.

w+
Read-write mode. Overwrites the existing file if the file exists. If the file does not exist, creates a new file for reading and writing.

a
Write-only mode. The file pointer is at the end of the file if the file exists. That is, the file is in the append mode. If the file does not exist, it creates a new file for writing.

a+
Read and write mode. 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.

(empshasis mine.)

r+, w+, and a+ all do read-write. w+ truncates the file. a+ appends. w+ and a+ both create the file if it does not exist.)


Access modes r+, w+ and a+ opens the file in read and write mode, but with the following difference:

r+ starts at beginning of file, but will not create a new file if it doesn't exists.

w+ truncates existing file to zero length if the file exists, otherwise creates a new file.

a+ starts at end of file if file exists, otherwise creates a new file.


For my own benefit / for reference purposes:

|mode|reads|writes|starts writing at|if preexists|r   |yes  |      |n/a              |ok|r+  |yes  |yes   |beginning        |fail|w   |     |yes   |beginning        |overwrite|w+  |yes  |yes   |beginning        |overwrite|a   |     |yes   |end              |append|a+  |yes  |yes   |end              |append