Difference between revisions of "Io"
(Created page with "__NOTOC__ '''Supported platforms:''' <br/> '''Available since:''' Gideros 2011.6<br/> === Description === Manages main input/output operations{|- | style="width: 50%;"| === Me...") |
|||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
− | '''Supported platforms:''' <br/> | + | '''Supported platforms:''' android, ios, mac, pc<br/> |
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
=== Description === | === Description === | ||
− | Manages main input/output operations{|- | + | Manages main input/output operations |
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | {|- | ||
| style="width: 50%;"| | | style="width: 50%;"| | ||
=== Methods === | === Methods === | ||
+ | [[io.close]] - closes file, or the default output file<br/> | ||
+ | [[io.flush]] - flushes the default output file<br/> | ||
+ | [[io.input]] - opens file in text mode, sets as default input file, or returns current default input file<br/> | ||
+ | [[io.lines]] - open file in read mode, returns iterator function to return lines, nil ends<br/> | ||
+ | [[io.open]] - opens file in specified mode "[rawb ]", returns handle or nil<br/> | ||
+ | [[io.output]] - opens file in text mode, sets as default output file, or returns current default output file<br/> | ||
+ | [[io.read]] - reads file according to given formats, returns read values or nil<br/> | ||
+ | [[io.tmpfile]] - returns a handle for a temporary file, opened in update mode<br/> | ||
+ | [[io.type]] - returns "file" if obj is an open file handle, "close file" if closed, or nil if not a file handle<br/> | ||
+ | [[io.write]] - writes strings or numbers to file<br/> | ||
| style="width: 50%;"| | | style="width: 50%;"| | ||
=== Events === | === Events === | ||
=== Constants === | === Constants === | ||
|} | |} |
Revision as of 08:56, 23 August 2018
Supported platforms: android, ios, mac, pc
Available since: Gideros 2011.6
Description
Manages main input/output operations
Methodsio.close - closes file, or the default output file |
EventsConstants |