Open
Description
I need to add the io.Seeker
interface to tinyfs.File
so I can read some data directly from littlefs storage instead of copying into memory first for some code that has to backtrack in the processing of the file.
I noticed that the littlefs implementation does support Seek()
but since the fatfs implementation does not, it is not part of that interface.
So, seems like the options are to either try to add to the current fatfs implementation, or to try swapping to @soypat pure go fatfs?
I really need this quickly so any feedback and/or help I can get will be appreciated! 😸