Corona中文站

强大、易学的跨平台(iOS/Android)开发框架。QQ群1:74390406(满) 群2:221929599

导航

五分钟学会Corona(十六) - Files
Applications are sandboxed meaning your files (e.g. application images, data, preferences) are stored in a location that no other application can access. Your files will reside in an app-specific directory for documents, resources, or temporary files.


Getting Paths to Files

The paths to these files are unique to your application. To create file paths, you use the system.pathForFile function. The following generates an absolute path to the icon file for your application using the application’s resource directory as the base directory for Icon.png:

local path = system.pathForFile( "Icon.png", system.ResourceDirectory )

In general, your files must reside in one of 3 possible base directories:

• system.DocumentsDirectory should be used for files that need to persist between application sessions.

• system.TemporaryDirectory is a temporary directory. Files written to this directory are not guaranteed to exist in subsequent application sessions. They may or may not exist.

• system.ResourceDirectory is the directory where all application assets exist. Note: you should never create, modify, or add files to this directory (see Beware Security Violations).


Reading Files

To read files, you use the io library provided by Lua. That library allows you to open files given an absolute path. Here’s an example of how to open a file and read all its contents.

1

2

3

4

5

6

7
local path = system.pathForFile( "data.txt", system.DocumentsDirectory )

local file = io.open( path, "r" )

if file then -- nil if no file found

local contents = file:read( "*a" )

print( "Contents of " .. path .. "\n" .. contents )

io.close( file )

end


In this example, we assume that a file “data.txt” exists in the documents directory. The function io.open creates a file object in which several object methods are available. We use the object method read to obtain the contents of the file as a string. At the end, we tell Lua that we are done with the file using the function io.open to close the file. After that point, the variable file is no longer a valid file object.


Writing Files

To write files, you follow many of the same steps as reading a file. Instead of using a read method, you write data (strings or numbers) to a file. Here’s an example that builds on the previous. It looks for the file data.txt and reads it as before; however if it does not exist, then a file is created. Note the addition of hard line breaks (paragraph breaks) using the special \n character.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18
local path = system.pathForFile( "data.txt", system.DocumentsDirectory )



-- io.open opens a file at path. returns nil if no file found

local file = io.open( path, "r" )

if file then

-- read all contents of file into a string

local contents = file:read( "*a" )

print( "Contents of " .. path .. "\n" .. contents )

io.close( file )

else

-- create file b/c it doesn't exist yet

file = io.open( path, "w" )

local numbers = {1,2,3,4,5,6,7,8,9}

file:write( "Feed me data!\n", numbers[1], numbers[2], "\n" )

for _,v in ipairs( numbers ) do file:write( v, " " ) end

file:write( "\nNo more data\n" )

io.close( file )

end


Beware Security Violations

Every time your application is launched, the integrity of the application is verified. It must be the same as the original file that was installed. If the integrity check fails, your app will not launch. Therefore, you should never create, modify, or write to files in the resources directory (see system.ResourceDirectory in System-Defined Directories).


Input and Output Syntax

The I/O library provides two different styles for file manipulation. The first one implicitly operates on a default file object; that is, there are operations to set a default input file and a default output file, and all input/output operations are over these default files. The second style uses explicit file objects.

When using implicit file descriptors, all operations are supplied by table io. When using explicit file descriptors, the operation io.open returns a file descriptor and then all operations are supplied as methods of the file descriptor.

The table io also provides three predefined file descriptors with their usual meanings from C: io.stdin, io.stdout, and io.stderr. The I/O library never closes these files.

Unless otherwise stated, all I/O functions return nil on failure (plus an error message as a second result and a system-dependent error code as a third result) and some value different from nil on success.


File paths

For security reasons, you can only open files in your application's sandbox. The io library requires you to supply paths to these files. To do so, you use system.pathForFile.

Here's an example of how to open an existing file or create one if it does not already exist:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18
local path = system.pathForFile( "data.txt", system.DocumentsDirectory )



-- io.open opens a file at path. returns nil if no file found

local file = io.open( path, "r" )

if file then

-- read all contents of file into a string

local contents = file:read( "*a" )

print( "Contents of " .. path .. "\n" .. contents )

io.close( file )

else

-- create file b/c it doesn't exist yet

file = io.open( path, "w" )

local numbers = {1,2,3,4,5,6,7,8,9}

file:write( "Feed me data!\n", numbers[1], numbers[2], "\n" )

for _,v in ipairs( numbers ) do file:write( v, " " ) end

file:write( "\nNo more data\n" )

io.close( file )

end


Implicit (default) file manipulation

io.close ([file])

Equivalent to file:close(). Without a file, closes the default output file.

io.flush ()

Equivalent to file:flush over the default output file.

io.input ([file])

When called with a file name, it opens the named file (in text mode), and sets its handle as the default input file. When called with a file handle, it simply sets this file handle as the default input file. When called without parameters, it returns the current default input file.

In case of errors this function raises the error, instead of returning an error code.

io.lines ([filename])

Opens the given file name in read mode and returns an iterator function that, each time it is called, returns a new line from the file. Therefore, the construction

1
for line in io.lines(filename) do body end


will iterate over all lines of the file. When the iterator function detects the end of file, it returns nil (to finish the loop) and automatically closes the file.

The call io.lines() (with no file name) is equivalent to io.input():lines(); that is, it iterates over the lines of the default input file. In this case it does not close the file when the loop ends.

io.open (filename [, mode])

This function opens a file, in the mode specified in the string mode. It returns a new file handle, or, in case of errors, nil plus an error message.

The mode string can be any of the following:

"r": read mode (the default);

"w": write mode;

"a": append mode;

"r+": update mode, all previous data is preserved;

"w+": update mode, all previous data is erased;

"a+": append update mode, previous data is preserved, writing is only allowed at the end of file.

The mode string can also have a 'b' at the end, which is needed in some systems to open the file in binary mode. This string is exactly what is used in the standard C function fopen.

io.output ([file])

Similar to io.input, but operates over the default output file.

io.popen (prog [, mode])

Starts program prog in a separated process and returns a file handle that you can use to read data from this program (if mode is "r", the default) or to write data to this program (if mode is "w").

This function is system dependent and is not available on all platforms.

io.read (...)

Equivalent to io.input():read.

io.tmpfile ()

Returns a handle for a temporary file. This file is opened in update mode and it is automatically removed when the program ends.

io.type (obj)

Checks whether obj is a valid file handle. Returns the string "file" if obj is an open file handle, "closed file" if obj is a closed file handle, or nil if obj is not a file handle.

io.write (...)

Equivalent to io.output():write.


Explicit file manipulation

You create a file object using the object returned by the function io.open. Note the use of colon ':' indicating that all operations are on the object (see Object Methods).

file:close ()

Closes file. Note that files are automatically closed when their handles are garbage collected, but that takes an unpredictable amount of time to happen.

file:flush ()

Saves any written data to file.

file:lines ()

Returns an iterator function that, each time it is called, returns a new line from the file. Therefore, the construction

1
for line in file:lines() do body end


will iterate over all lines of the file. (Unlike io.lines, this function does not close the file when the loop ends.)

file:read (...)

Reads the file file, according to the given formats, which specify what to read. For each format, the function returns a string (or a number) with the characters read, or nil if it cannot read data with the specified format. When called without formats, it uses a default format that reads the entire next line (see below).

The available formats are

"*n": reads a number; this is the only format that returns a number instead of a string.

"*a": reads the whole file, starting at the current position. On end of file, it returns the empty string.

"*l": reads the next line (skipping the end of line), returning nil on end of file. This is the default format.

number: reads a string with up to this number of characters, returning nil on end of file. If number is zero, it reads nothing and returns an empty string, or nil on end of file.

file:seek ([whence] [, offset])

Sets and gets the file position, measured from the beginning of the file, to the position given by offset plus a base specified by the string whence, as follows:

"set": base is position 0 (beginning of the file);

"cur": base is current position;

"end": base is end of file;

In case of success, function seek returns the final file position, measured in bytes from the beginning of the file. If this function fails, it returns nil, plus a string describing the error.

The default value for whence is "cur", and for offset is 0. Therefore, the call file:seek() returns the current file position, without changing it; the call file:seek("set") sets the position to the beginning of the file (and returns 0); and the call file:seek("end") sets the position to the end of the file, and returns its size.

file:setvbuf (mode [, size])

Sets the buffering mode for an output file. There are three available modes:

"no": no buffering; the result of any output operation appears immediately.

"full": full buffering; output operation is performed only when the buffer is full (or when you explicitly flush the file (see io.flush)).

"line": line buffering; output is buffered until a newline is output or there is any input from some special files (such as a terminal device).

For the last two cases, size specifies the size of the buffer, in bytes. The default is an appropriate size.

file:write (...)

Writes the value of each of its arguments to the file. The arguments must be strings or numbers. To write other values, use tostring or string.format before write
<< 五分钟学会Corona(十五) - Database (SQLite)五分钟学会Corona(十七) - >>

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

最近发表

Powered By Z-Blog 1.8 Walle Build 100427 Copyright 2011-2015 BuildApp.Net. All Rights Reserved.