aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authortomas <tomas>2004-07-29 16:47:11 +0000
committertomas <tomas>2004-07-29 16:47:11 +0000
commitc899c9b2e24401671695b614e88e11886942ad51 (patch)
tree470a9883e0f325746dc1c6e9d88933d05ec347c8 /doc
parent70052678b19e026a8db3ecb58824d6aa770ea589 (diff)
downloadluafilesystem-c899c9b2e24401671695b614e88e11886942ad51.tar.gz
luafilesystem-c899c9b2e24401671695b614e88e11886942ad51.tar.bz2
luafilesystem-c899c9b2e24401671695b614e88e11886942ad51.zip
Regra que cria a distribuicao (Makefile).
Troca de nome da biblioteca (lfs).
Diffstat (limited to 'doc')
-rw-r--r--doc/us/manual.html14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/us/manual.html b/doc/us/manual.html
index 374d033..2c40441 100644
--- a/doc/us/manual.html
+++ b/doc/us/manual.html
@@ -55,22 +55,22 @@ as Lua 5.0.
55LuaFileSystem offers the following functions: 55LuaFileSystem offers the following functions:
56<ul> 56<ul>
57 <a name="chdir"></a> 57 <a name="chdir"></a>
58 <li> <b><tt>luafilesystem.chdir (path)</tt></b> <br> 58 <li> <b><tt>lfs.chdir (path)</tt></b> <br>
59 Changes the current 59 Changes the current
60 working directory to the given <tt>path</tt>. 60 working directory to the given <tt>path</tt>.
61 61
62 <a name="getcwd"></a> 62 <a name="getcwd"></a>
63 <li> <b><tt>luafilesystem.currentdir ()</tt></b> <br> 63 <li> <b><tt>lfs.currentdir ()</tt></b> <br>
64 Returns the current 64 Returns the current
65 working directory or <code>nil</code> plus an error string. 65 working directory or <code>nil</code> plus an error string.
66 66
67 <a name="dir"></a> 67 <a name="dir"></a>
68 <li> <b><tt>luafilesystem.dir (path)</tt></b> <br> 68 <li> <b><tt>lfs.dir (path)</tt></b> <br>
69 Lua iterator over the entries 69 Lua iterator over the entries
70 of a given directory. 70 of a given directory.
71 71
72 <a name="lock"></a> 72 <a name="lock"></a>
73 <li> <b><tt>luafilesystem.lock (filehandle, mode[, start[, length]])</tt></b> <br> 73 <li> <b><tt>lfs.lock (filehandle, mode[, start[, length]])</tt></b> <br>
74 Locks a file or a part of it. 74 Locks a file or a part of it.
75 This function works on <em>open files</em>; 75 This function works on <em>open files</em>;
76 the file handle should be specified as the first argument. 76 the file handle should be specified as the first argument.
@@ -84,12 +84,12 @@ LuaFileSystem offers the following functions:
84 error. 84 error.
85 85
86 <a name="mkdir"></a> 86 <a name="mkdir"></a>
87 <li> <b><tt>luafilesystem.mkdir (dirname)</tt></b> <br> 87 <li> <b><tt>lfs.mkdir (dirname)</tt></b> <br>
88 Creates a new directory. 88 Creates a new directory.
89 The argument is the name of the new directory. 89 The argument is the name of the new directory.
90 90
91 <a name="unlock"></a> 91 <a name="unlock"></a>
92 <li> <b><tt>luafilesystem.unlock (filehandle[, start[, length]])</tt></b> <br> 92 <li> <b><tt>lfs.unlock (filehandle[, start[, length]])</tt></b> <br>
93 Unlocks a file or a part of it. 93 Unlocks a file or a part of it.
94 This function works on <em>open files</em>; 94 This function works on <em>open files</em>;
95 the file handle should be specified as the first argument. 95 the file handle should be specified as the first argument.
@@ -137,7 +137,7 @@ LuaFileSystem offers the following functions:
137 137
138<hr> 138<hr>
139<small> 139<small>
140$Id: manual.html,v 1.1 2004/07/27 14:15:24 tomas Exp $ 140$Id: manual.html,v 1.2 2004/07/29 16:47:11 tomas Exp $
141</small> 141</small>
142 142
143</body> 143</body>