SYNOPSIS
File reopen( String fname, [FileMode] mode, File f )ARGUMENTS
fname The file name
mode A list of file modes
f The existing file handle
DESCRIPTION
Re-open a file. This functions exactly like IO.open(3kaya) except that rather than opening a new file, it changes an existing file handle. This is mainly useful for re-opening the standard input, output and error streams on a different file.
-
in = reopen("inputscript",[Read],stdin);
AUTHORS
Kaya standard library by Edwin Brady, Chris Morris and others ([email protected]). For further information see http://kayalang.org/LICENSE
The Kaya standard library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (version 2.1 or any later version) as published by the Free Software Foundation.RELATED
IO.close(3kaya)
IO.open(3kaya)
IO.stdin(3kaya)
IO.stdout(3kaya)
IO.stderr(3kaya)