From f7545b200ef95632f91a9fe76394d5c19a87b280 Mon Sep 17 00:00:00 2001 From: Damien George Date: Fri, 2 Dec 2016 15:13:29 +1100 Subject: [PATCH] stmhal/moduos: Implement POSIX behaviour of rename, allow to overwrite. --- stmhal/moduos.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/stmhal/moduos.c b/stmhal/moduos.c index 3fbdcbe22..b3c6570a5 100644 --- a/stmhal/moduos.c +++ b/stmhal/moduos.c @@ -183,6 +183,14 @@ STATIC mp_obj_t os_rename(mp_obj_t path_in, mp_obj_t path_out) { const char *old_path = mp_obj_str_get_str(path_in); const char *new_path = mp_obj_str_get_str(path_out); FRESULT res = f_rename(old_path, new_path); + if (res == FR_EXIST) { + // if new_path exists then try removing it + res = f_unlink(new_path); + if (res == FR_OK) { + // try to rename again + res = f_rename(old_path, new_path); + } + } switch (res) { case FR_OK: return mp_const_none;