diff options
author | Damien George <damien.p.george@gmail.com> | 2017-05-05 23:36:17 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-05-10 12:13:53 +1000 |
commit | f1609bc843f1c30117cf9dfae8fb22ee36512446 (patch) | |
tree | 53fa6f85724c39e2f5056a6479d306e33a49d763 /unix | |
parent | 852c215d76de082adf57d3724907ab2c8d790e78 (diff) | |
download | micropython-f1609bc843f1c30117cf9dfae8fb22ee36512446.tar.gz micropython-f1609bc843f1c30117cf9dfae8fb22ee36512446.zip |
ports: Add ilistdir in uos module.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/moduos_vfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/unix/moduos_vfs.c b/unix/moduos_vfs.c index 58990b0288..96defa5544 100644 --- a/unix/moduos_vfs.c +++ b/unix/moduos_vfs.c @@ -42,6 +42,7 @@ STATIC const mp_rom_map_elem_t uos_vfs_module_globals_table[] = { { MP_ROM_QSTR(MP_QSTR_chdir), MP_ROM_PTR(&mp_vfs_chdir_obj) }, { MP_ROM_QSTR(MP_QSTR_getcwd), MP_ROM_PTR(&mp_vfs_getcwd_obj) }, + { MP_ROM_QSTR(MP_QSTR_ilistdir), MP_ROM_PTR(&mp_vfs_ilistdir_obj) }, { MP_ROM_QSTR(MP_QSTR_listdir), MP_ROM_PTR(&mp_vfs_listdir_obj) }, { MP_ROM_QSTR(MP_QSTR_mkdir), MP_ROM_PTR(&mp_vfs_mkdir_obj) }, { MP_ROM_QSTR(MP_QSTR_remove), MP_ROM_PTR(&mp_vfs_remove_obj) }, |