Introduction
LuaFileSystem is a Lua library developed to complement the set of functions related to file systems offered by the standard Lua distribution.
LuaFileSystem offers a portable way to access the underlying directory structure and file attributes.
Installation
The LuaFileSystem compiled binary should be copied to a directory in your
LUA_CPATH
. Lua 5.0 users should install Compat-5.1 also.
Windows users can use the binary version of LuaFileSystem
(lfs.dll
) available at
LuaForge.
Reference
LuaFileSystem offers the following functions:
lfs.attributes (filepath [, aname])
- Returns a table with the file attributes corresponding to
filepath
(ornil
followed by an error message in case of error). If the second optional argument is given, then only the value of the named attribute is returned (this use is equivalent tolfs.attributes(filepath).aname
, but the table is not created and only one attribute is retrieved from the O.S.). The attributes are described as follows; attributemode
is a string, all the others are numbers, and the time related attributes use the same time reference ofos.time
:dev
- on Unix systems, this represents the device that the inode resides on. On Windows systems, represents the drive number of the disk containing the file
ino
- on Unix systems, this represents the inode number. On Windows systems this has no meaning
mode
- string representing the associated protection mode (the values could be
file
,directory
,link
,socket
,named pipe
,char device
,block device
orother
) nlink
- number of hard links to the file
uid
- user-id of owner (Unix only, always 0 on Windows)
gid
- group-id of owner (Unix only, always 0 on Windows)
rdev
- on Unix systems, represents the device type, for special file inodes.
On Windows systems represents the same as
dev
access
- time of last access
modification
- time of last data modification
change
- time of last file status change
size
- file size, in bytes
blocks
- block allocated for file; (Unix only)
blksize
- optimal file system I/O blocksize; (Unix only)
lfs.chdir (path)
- Changes the current working directory to the given
path
.
Returnstrue
in case of success ornil
plus an error string. lfs.currentdir ()
- Returns a string with the current working directory or
nil
plus an error string. lfs.dir (path)
-
Lua iterator over the entries of a given directory.
Each time the iterator is called it returns a string with an entry of the
directory;
nil
is returned when there is no more entries. Raises an error ifpath
is not a directory. lfs.lock (filehandle, mode[, start[, length]])
- Locks a file or a part of it. This function works on open files; the
file handle should be specified as the first argument.
The string
mode
could be eitherr
(for a read/shared lock) orw
(for a write/exclusive lock). The optional argumentsstart
andlength
can be used to specify a starting point and its length; both should be numbers.
Returnstrue
if the operation was successful; in case of error, it returnsnil
plus an error string. lfs.mkdir (dirname)
- Creates a new directory. The argument is the name of the new
directory.
Returnstrue
if the operation was successful; in case of error, it returnsnil
plus an error string. lfs.rmdir (dirname)
- Removes an existing directory. The argument is the name of the directory.
Returnstrue
if the operation was successful; in case of error, it returnsnil
plus an error string. lfs.touch (filepath [, atime [, mtime]])
- Set access and modification times of a file. This function is
a bind to
utime
function. The first argument is the filename, the second argument (atime
) is the access time, and the third argument (mtime
) is the modification time. Both times are provided in seconds (which should be generated with Lua standard functionos.date
). If the modification time is omitted, the access time provided is used; if both times are omitted, the current time is used.
Returnstrue
if the operation was successful; in case of error, it returnsnil
plus an error string. lfs.unlock (filehandle[, start[, length]])
- Unlocks a file or a part of it. This function works on
open files; the file handle should be specified as the first
argument. The optional arguments
start
andlength
can be used to specify a starting point and its length; both should be numbers.
Returnstrue
if the operation was successful; in case of error, it returnsnil
plus an error string.