In Files

    • io.c

    Class/Module Index [+]

    Quicksearch
    No matching classes.

    IOError

    Raised when an operation fails.

    File.open("/etc/hosts") {|f| f << "example"}
     #=> IOError: not opened for writing
    File.open("/etc/hosts") {|f| f.close; f.read }
     #=> IOError: closed stream
    

    Note that some failures raise SystemCallErrors and these are not subclasses of IOError:

    File.open("does/not/exist")
     #=> Errno::ENOENT: No such file or directory - does/not/exist
    

    This page was generated for Ruby

    is provided by and . .

    Generated with Ruby-doc Rdoc Generator 0.44.0.