summaryrefslogtreecommitdiffstatshomepage
path: root/extmod
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2025-03-11 14:39:41 +1100
committerDamien George <damien@micropython.org>2025-03-27 17:04:12 +1100
commite4051a1ca66703090383678a1747c3f99e993309 (patch)
tree05b0ece8c55b373a4fb561c676beb389012e10c3 /extmod
parentc68a40ac94ea8a8dd6031dff6f21706977893bef (diff)
downloadmicropython-e4051a1ca66703090383678a1747c3f99e993309.tar.gz
micropython-e4051a1ca66703090383678a1747c3f99e993309.zip
extmod/vfs_rom: Implement minimal VfsRom.getcwd() method.
This is needed if you chdir to a ROMFS and want to query your current directory. Prior to this change, using `os.getcwd()` when in a ROMFS would raise: AttributeError: 'VfsRom' object has no attribute 'getcwd' Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'extmod')
-rw-r--r--extmod/vfs_rom.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/extmod/vfs_rom.c b/extmod/vfs_rom.c
index ff3652d2ce..7d814cb980 100644
--- a/extmod/vfs_rom.c
+++ b/extmod/vfs_rom.c
@@ -300,6 +300,13 @@ static mp_obj_t vfs_rom_chdir(mp_obj_t self_in, mp_obj_t path_in) {
}
static MP_DEFINE_CONST_FUN_OBJ_2(vfs_rom_chdir_obj, vfs_rom_chdir);
+static mp_obj_t vfs_rom_getcwd(mp_obj_t self_in) {
+ (void)self_in;
+ // The current directory is always the root of the ROMFS.
+ return MP_OBJ_NEW_QSTR(MP_QSTR_);
+}
+static MP_DEFINE_CONST_FUN_OBJ_1(vfs_rom_getcwd_obj, vfs_rom_getcwd);
+
typedef struct _vfs_rom_ilistdir_it_t {
mp_obj_base_t base;
mp_fun_1_t iternext;
@@ -436,6 +443,7 @@ static const mp_rom_map_elem_t vfs_rom_locals_dict_table[] = {
{ MP_ROM_QSTR(MP_QSTR_open), MP_ROM_PTR(&vfs_rom_open_obj) },
{ MP_ROM_QSTR(MP_QSTR_chdir), MP_ROM_PTR(&vfs_rom_chdir_obj) },
+ { MP_ROM_QSTR(MP_QSTR_getcwd), MP_ROM_PTR(&vfs_rom_getcwd_obj) },
{ MP_ROM_QSTR(MP_QSTR_ilistdir), MP_ROM_PTR(&vfs_rom_ilistdir_obj) },
{ MP_ROM_QSTR(MP_QSTR_stat), MP_ROM_PTR(&vfs_rom_stat_obj) },
{ MP_ROM_QSTR(MP_QSTR_statvfs), MP_ROM_PTR(&vfs_rom_statvfs_obj) },