Difference between revisions of "Io"
Line 2: | Line 2: | ||
'''Supported platforms:''' android, ios, mac, pc<br/> | '''Supported platforms:''' android, ios, mac, pc<br/> | ||
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
− | === Description === | + | === <translate>Description</translate> === |
<translate>Manages main input/output operations</translate> | <translate>Manages main input/output operations</translate> | ||
− | === Examples === | + | === <translate>Examples</translate> === |
'''Copy a file'''<br/> | '''Copy a file'''<br/> | ||
<source lang="lua">local function copy(src, dst) | <source lang="lua">local function copy(src, dst) | ||
Line 20: | Line 20: | ||
{|- | {|- | ||
| style="width: 50%; vertical-align:top;"| | | style="width: 50%; vertical-align:top;"| | ||
− | === Methods === | + | === <translate>Methods</translate> === |
[[Special:MyLanguage/io.close|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/> | ||
[[Special:MyLanguage/io.flush|io.flush]] ''<translate>flushes the default output file</translate>''<br/> | [[Special:MyLanguage/io.flush|io.flush]] ''<translate>flushes the default output file</translate>''<br/> | ||
Line 32: | Line 32: | ||
[[Special:MyLanguage/io.write|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 === | + | === <translate>Events</translate> === |
− | === Constants === | + | === <translate>Constants</translate> === |
|} | |} |
Revision as of 07:28, 24 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 |