Read A Text File in Corona
Minggu, 27 Oktober 2013
0
komentar
Reading a text file in corona is very eazy.First get the file path and using the file path read the content in the file. Check the code below.
Copy and download the code and try your self.
display.setStatusBar( display.HiddenStatusBar )
-- read the file path
local filePath = system.pathForFile( "myFile.txt", system.ResourceDirectory )
local file = io.open( filePath, "r" )
if file then
-- read all contents of file into a string
local contents = file:read( "*a" )
print( "The file path is" .. filePath )
print( contents )
io.close( file )
end
Copy and download the code and try your self.
Baca Selengkapnya ....