hi all, when using files in the ruby language, what is the difference between r+ and w+ mode? and a+? great thanks.
|
|
See http://www.tutorialspoint.com/ruby/ruby_input_output.htm To quote:
(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.) |
||
|
|
|
|
Answer: Both r+ and w+ we can read ,write on file but r+ does not truncate (delete) the content of file as well it doesn’t create a new file if such file doesn’t exits while in w+ truncate the content of file as well as create a new file if such file doesn’t exists. |
||
|
|
