feat: add SDCardManager rename method and EInkDisplay improvements
- Add rename() method to SDCardManager for file/directory moves - Improve EInkDisplay grayscale handling
This commit is contained in:
@@ -29,6 +29,7 @@ class SDCardManager {
|
||||
bool exists(const char* path) { return sd.exists(path); }
|
||||
bool remove(const char* path) { return sd.remove(path); }
|
||||
bool rmdir(const char* path) { return sd.rmdir(path); }
|
||||
bool rename(const char* oldPath, const char* newPath) { return sd.rename(oldPath, newPath); }
|
||||
|
||||
bool openFileForRead(const char* moduleName, const char* path, FsFile& file);
|
||||
bool openFileForRead(const char* moduleName, const std::string& path, FsFile& file);
|
||||
|
||||
Reference in New Issue
Block a user