diff options
| author | tuler <tuler> | 2005-06-09 16:19:27 +0000 |
|---|---|---|
| committer | tuler <tuler> | 2005-06-09 16:19:27 +0000 |
| commit | 7446e3148678a840512a23c569593597ffb76ea9 (patch) | |
| tree | 281791f3a1f7090a656d2e1c9c248a54e5dd6b80 | |
| parent | af9acdaf859902143821ad9ddede242c0c078b9f (diff) | |
| download | luafilesystem-7446e3148678a840512a23c569593597ffb76ea9.tar.gz luafilesystem-7446e3148678a840512a23c569593597ffb76ea9.tar.bz2 luafilesystem-7446e3148678a840512a23c569593597ffb76ea9.zip | |
new function rmdir
| -rw-r--r-- | doc/us/index.html | 9 | ||||
| -rw-r--r-- | doc/us/manual.html | 7 |
2 files changed, 12 insertions, 4 deletions
diff --git a/doc/us/index.html b/doc/us/index.html index ddeb254..c41f211 100644 --- a/doc/us/index.html +++ b/doc/us/index.html | |||
| @@ -61,9 +61,9 @@ the underlying directory structure and file attributes.</p> | |||
| 61 | 61 | ||
| 62 | <h2><a name="status"></a>Status</h2> | 62 | <h2><a name="status"></a>Status</h2> |
| 63 | 63 | ||
| 64 | <p>Current version is 1.1. It was developed for Lua 5.0.</p> | 64 | <p>Current version is 1.2. It was developed for Lua 5.0.</p> |
| 65 | 65 | ||
| 66 | <p>Version 1.1 follows the | 66 | <p>Version 1.2 follows the |
| 67 | <a href="http://www.keplerproject.org/compat">package model</a> | 67 | <a href="http://www.keplerproject.org/compat">package model</a> |
| 68 | for Lua 5.1 (see section <a href="manual.html#installation">Installation</a> | 68 | for Lua 5.1 (see section <a href="manual.html#installation">Installation</a> |
| 69 | for more details).</p> | 69 | for more details).</p> |
| @@ -82,6 +82,9 @@ LuaForge page.</p> | |||
| 82 | <h2><a name="history"></a>History</h2> | 82 | <h2><a name="history"></a>History</h2> |
| 83 | 83 | ||
| 84 | <ul> | 84 | <ul> |
| 85 | <li>[xx/xx/2005] Version 1.2 released<br/> | ||
| 86 | added function <code>lfs.rmdir</code>. | ||
| 87 | </li> | ||
| 85 | <li>[30/May/2005] Version 1.1 released<br/> | 88 | <li>[30/May/2005] Version 1.1 released<br/> |
| 86 | added function <code>lfs.touch</code>. | 89 | added function <code>lfs.touch</code>. |
| 87 | </li> | 90 | </li> |
| @@ -111,7 +114,7 @@ Comments are welcome!</p> | |||
| 111 | <div id="about"> | 114 | <div id="about"> |
| 112 | <p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p> | 115 | <p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p> |
| 113 | <p><small> | 116 | <p><small> |
| 114 | $Id: index.html,v 1.24 2005/06/02 21:14:53 tuler Exp $ | 117 | $Id: index.html,v 1.25 2005/06/09 16:21:54 tuler Exp $ |
| 115 | </small></p> | 118 | </small></p> |
| 116 | </div> <!-- id="about" --> | 119 | </div> <!-- id="about" --> |
| 117 | 120 | ||
diff --git a/doc/us/manual.html b/doc/us/manual.html index 5167c40..df532a1 100644 --- a/doc/us/manual.html +++ b/doc/us/manual.html | |||
| @@ -162,6 +162,11 @@ binary properly.</p> | |||
| 162 | Returns a boolean indicating whether the operation succeeds or not | 162 | Returns a boolean indicating whether the operation succeeds or not |
| 163 | (in this case, an error string is returned too).</dd> | 163 | (in this case, an error string is returned too).</dd> |
| 164 | 164 | ||
| 165 | <dt><a name="rmdir"></a><strong><code>lfs.rmdir (dirname)</code></strong></dt> | ||
| 166 | <dd>Removes an existing directory. The argument is the name of the directory.<br /> | ||
| 167 | Returns a boolean indicating whether the operation succeeds or not | ||
| 168 | (in this case, an error string is returned too).</dd> | ||
| 169 | |||
| 165 | <dt><a name="touch"></a><strong><code>lfs.touch (filepath [, atime [, mtime]])</code></strong></dt> | 170 | <dt><a name="touch"></a><strong><code>lfs.touch (filepath [, atime [, mtime]])</code></strong></dt> |
| 166 | <dd>Set access and modification times of a file. This function is | 171 | <dd>Set access and modification times of a file. This function is |
| 167 | a bind to <code>utime</code> function. The first argument is the | 172 | a bind to <code>utime</code> function. The first argument is the |
| @@ -192,7 +197,7 @@ binary properly.</p> | |||
| 192 | <div id="about"> | 197 | <div id="about"> |
| 193 | <p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p> | 198 | <p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p> |
| 194 | <p><small> | 199 | <p><small> |
| 195 | $Id: manual.html,v 1.23 2005/06/08 14:25:09 carregal Exp $ | 200 | $Id: manual.html,v 1.24 2005/06/09 16:19:27 tuler Exp $ |
| 196 | </small></p> | 201 | </small></p> |
| 197 | </div> <!-- id="about" --> | 202 | </div> <!-- id="about" --> |
| 198 | 203 | ||
