diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2010-06-18 13:10:14 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-06-18 13:10:14 +0000 |
| commit | bfd8d023db7b6be9dff11a781372c382a27e053b (patch) | |
| tree | 08e4ded33ef099cbb3063a29573d9d78c93f27bf /apps/plugins/lua/rocklib_aux.pl | |
| parent | d8cef9c0789427a1f5b0cac1a4601a96d9cf1c78 (diff) | |
| download | rockbox-bfd8d023db7b6be9dff11a781372c382a27e053b.zip rockbox-bfd8d023db7b6be9dff11a781372c382a27e053b.tar.gz rockbox-bfd8d023db7b6be9dff11a781372c382a27e053b.tar.bz2 rockbox-bfd8d023db7b6be9dff11a781372c382a27e053b.tar.xz | |
FS#11347 by me: *dir LUA functions: luadir module
mkdir and rmdir are now in this module and not in the rockbox API
implements the 'dir' iterator to browse directories
Based on LuaFileSystem : http://www.keplerproject.org/luafilesystem
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26913 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lua/rocklib_aux.pl')
| -rwxr-xr-x | apps/plugins/lua/rocklib_aux.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugins/lua/rocklib_aux.pl b/apps/plugins/lua/rocklib_aux.pl index 77fd08b..9103fcc 100755 --- a/apps/plugins/lua/rocklib_aux.pl +++ b/apps/plugins/lua/rocklib_aux.pl @@ -54,6 +54,8 @@ my @forbidden_functions = ('^open$', '^close$', '^read$', '^write$', + '^mkdir$', + '^rmdir$', '^lseek$', '^ftruncate$', '^filesize$', |