| Previous | Next
IO::FileInherits from IO::Handle and IO::Seekable, extending them with methods specific to filehandles. Provides three such methods.
$fh = new ([params]) Constructor. Creates an IO::File object, passing any parameters to the method
$fh = new_tmpfile Constructor. Creates an IO::File object opened for read/write on a newly created temporary file. If the system permits, the temporary file is anonymous; if the temporary file cannot be created or opened, the object is destroyed. Otherwise, it is returned to the caller.
$fh->open(filename[, mode[, perms]]) Opens the newly created filehandle. Accepts one, two, or three parameters. With one parameter, it acts as a frontend for Perl's built-in |