method

new

v2_4_6 - Show latest stable - Class: File
new(*args)
public

Opens the file named by filename according to the given mode and returns a new File object.

See IO.new for a description of mode and opt.

If a file is being created, permission bits may be given in perm. These mode and permission bits are platform dependent; on Unix systems, see open(2) and chmod(2) man pages for details.

Examples

f = File.new("testfile", "r")
f = File.new("newfile",  "w+")
f = File.new("newfile", File::CREAT|File::TRUNC|File::RDWR, 0644)

2Notes

Errors Raised

sshaw · Apr 21, 2010

Modes listed in IO class

webmat · Feb 23, 2013

See class IO for file open modes