|
AwesomeStudioPedal
A programmable, multi-profile foot controller for DAWs, score readers, and studio automation
|
File system implementation using LittleFS for embedded targets. More...
Public Member Functions | |
| bool | exists (const char *path) override |
| Check if a file exists. | |
| bool | readFile (const char *path, std::string &content) override |
| Read entire file content. | |
| bool | writeFile (const char *path, const std::string &content) override |
| Write content to a file. | |
Public Member Functions inherited from IFileSystem | |
| virtual | ~IFileSystem ()=default |
File system implementation using LittleFS for embedded targets.
Definition at line 27 of file littlefs_file_system.cpp.
|
inlineoverridevirtual |
Check if a file exists.
| path | Path to the file |
Implements IFileSystem.
Definition at line 30 of file littlefs_file_system.cpp.
|
inlineoverridevirtual |
Read entire file content.
| path | Path to the file |
| content | Output parameter for file content |
Implements IFileSystem.
Definition at line 46 of file littlefs_file_system.cpp.
|
inlineoverridevirtual |
Write content to a file.
| path | Path to the file |
| content | Content to write |
Implements IFileSystem.
Definition at line 78 of file littlefs_file_system.cpp.