Difference between revisions of "X File"
From GiderosMobile
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>file object is usually returned by [[Special:MyLanguage/io.open|io.open]] used to manipulate (read and write) files in lua</translate> | <translate>file object is usually returned by [[Special:MyLanguage/io.open|io.open]] used to manipulate (read and write) files in lua</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/file:close|file:close]] ''<translate>closes file</translate>''<br/> | [[Special:MyLanguage/file:close|file:close]] ''<translate>closes file</translate>''<br/> | ||
[[Special:MyLanguage/file:flush|file:flush]] ''<translate>saves any written data to file</translate>''<br/> | [[Special:MyLanguage/file:flush|file:flush]] ''<translate>saves any written data to file</translate>''<br/> | ||
Line 28: | Line 28: | ||
[[Special:MyLanguage/file:write|file:write]] ''<translate>writes strings or numbers to file</translate>''<br/> | [[Special:MyLanguage/file:write|file: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
file object is usually returned by io.open used to manipulate (read and write) files in lua
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
Methodsfile:close closes file |
EventsConstants |