We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi there
Thanks for the great library!
I've noticed a file loss if the program is interrupted at small time windows, where the file is opened, but not yet committed (via sync).
esp8266/Arduino#8155 is an example of file loss.
The fail comes due to erasing the file when opened in writing mode.
As mentioned in docs 'recover guarantee to the last well-known state of the file', I'm looking for solution for such loss, so:
LFS_O_RDWR
lfs_file_close
#344
Thanks again.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi there
Thanks for the great library!
I've noticed a file loss if the program is interrupted at small time windows, where the file is opened, but not yet committed (via sync).
esp8266/Arduino#8155 is an example of file loss.
The fail comes due to erasing the file when opened in writing mode.
As mentioned in docs 'recover guarantee to the last well-known state of the file', I'm looking for solution for such loss, so:
LFS_O_RDWR
flag?LFS_O_RDWR
, Is there an available mechanism to do so?lfs_file_close
call?Potential similar issue:
#344
Thanks again.
The text was updated successfully, but these errors were encountered: