Difference between revisions of "Io"
Line 21: | Line 21: | ||
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
=== Methods === | === Methods === | ||
− | [[io.close]] ''<translate>closes file, or the default output file</translate>''<br/> | + | [[Special:MyLanguage/io.close|io.close]] ''<translate>closes file, or the default output file</translate>''<br/> |
− | [[io.flush]] ''<translate>flushes the default output file</translate>''<br/> | + | [[Special:MyLanguage/io.flush|io.flush]] ''<translate>flushes the default output file</translate>''<br/> |
− | [[io.input]] ''<translate>opens file in text mode, sets as default input file, or returns current default input file</translate>''<br/> | + | [[Special:MyLanguage/io.input|io.input]] ''<translate>opens file in text mode, sets as default input file, or returns current default input file</translate>''<br/> |
− | [[io.lines]] ''<translate>open file in read mode, returns iterator function to return lines, nil ends</translate>''<br/> | + | [[Special:MyLanguage/io.lines|io.lines]] ''<translate>open file in read mode, returns iterator function to return lines, nil ends</translate>''<br/> |
− | [[io.open]] ''<translate>opens file in specified mode "[rawb ]", returns handle or nil</translate>''<br/> | + | [[Special:MyLanguage/io.open|io.open]] ''<translate>opens file in specified mode "[rawb ]", returns handle or nil</translate>''<br/> |
− | [[io.output]] ''<translate>opens file in text mode, sets as default output file, or returns current default output file</translate>''<br/> | + | [[Special:MyLanguage/io.output|io.output]] ''<translate>opens file in text mode, sets as default output file, or returns current default output file</translate>''<br/> |
− | [[io.read]] ''<translate>reads file according to given formats, returns read values or nil</translate>''<br/> | + | [[Special:MyLanguage/io.read|io.read]] ''<translate>reads file according to given formats, returns read values or nil</translate>''<br/> |
− | [[io.tmpfile]] ''<translate>returns a handle for a temporary file, opened in update mode</translate>''<br/> | + | [[Special:MyLanguage/io.tmpfile|io.tmpfile]] ''<translate>returns a handle for a temporary file, opened in update mode</translate>''<br/> |
− | [[io.type]] ''<translate>returns "file" if obj is an open file handle, "close file" if closed, or nil if not a file handle</translate>''<br/> | + | [[Special:MyLanguage/io.type|io.type]] ''<translate>returns "file" if obj is an open file handle, "close file" if closed, or nil if not a file handle</translate>''<br/> |
− | [[io.write]] ''<translate>writes strings or numbers to file</translate>''<br/> | + | [[Special:MyLanguage/io.write|io.write]] ''<translate>writes strings or numbers to file</translate>''<br/> |
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
=== Events === | === Events === | ||
=== Constants === | === Constants === | ||
|} | |} |
Revision as of 16:34, 23 August 2018
Supported platforms: android, ios, mac, pc
Available since: Gideros 2011.6
Description
Manages main input/output operations
Examples
Copy a file
local function copy(src, dst)
local srcf = io.open(src, "rb")
local dstf = io.open(dst, "wb")
local size = 2^13 -- good buffer size (8K)
while true do
local block = srcf:read(size)
if not block then break end
dstf:write(block)
end
srcf:close()
dstf:close()
end
Methodsio.close closes file, or the default output file |
EventsConstants |