Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
6 years, 10 months ago.
LittleFileSystem fopen("file","w") does remove existing file
According to the C++ fopen documentation at http://www.cplusplus.com/reference/cstdio/fopen/ if 'mode' is "w" and the filename points to an existing file, the contents of the existing file are cleared.
FATFileSystem does have this behaviour but LittleFileSystem does not seem to. Here's some example code....
example
char * filename = "/fs/eventlog.bin"; FILE *fd = fopen(filename,"w"); fclose(fd); struct stat stat_buf; stat(filename, &stat_buf); ASSERT(stat_buf.st_size!=0,"file size should be zero after opening");
When the underlying filesystem is LittleFileSystem and if the file already exists and it not empty, this asserts since the filesize is not changed on fopen.
Obviously a workaround is to use the remove method (or possibly a zero-length write?)
1 Answer
6 years, 10 months ago.
Thanks for reporting, looks like this was a valid bug related to how LittleFS was handling the O_TRUNC flag. Here's the patch to fix it:
https://github.com/ARMmbed/mbed-os/pull/5832
You should be able to get the patch in the next patch release of Mbed OS or so (5.7.3?)
Thanks, reported here.
posted by Jan Jongboom 10 Jan 2018