Fclose » History » Revision 3
Revision 2 (Per Amundsen, 06/27/2014 02:19 PM) → Revision 3/6 (Per Amundsen, 05/24/2018 10:17 AM)
_Added in 1.8.10_ */fclose <handle>* Closes the file associated with this handle. If you specify a [[Scripting_Wildcards|wildcard]], wildcard, all matching handles are closed. *Parameters* <handle> - The handle to close. *Example* <pre> 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 } </pre>