Actions
Fclose » History » Revision 1
Revision 1/6
| Next »
Per Amundsen, 02/10/2014 01:56 PM
Added in 1.8.10
/fclose <handle>
Closes the file associated with this handle.
If you specify a wildcard, all matching handle are closed.
Parameters
<handle> - The handle to close.
Example
alias example {
;Open a file.
/fopen -o x example.txt
;write to the file
/fwrite x Print this line.
;Close the file handle
/fclose x
}
Updated by Per Amundsen almost 12 years ago · 6 revisions