diff --git a/src/libs/SD/src/SD.h b/src/libs/SD/src/SD.h index b483874..007553a 100644 --- a/src/libs/SD/src/SD.h +++ b/src/libs/SD/src/SD.h @@ -96,6 +96,10 @@ public: bool rename(const char* pathFrom, const char* pathTo) { return (boolean)SDFS.rename(pathFrom, pathTo); } + + bool info64(FSInfo64& info) { + return (boolean)SDFS.info64(info); + } uint8_t type() { sdfs::SDFSImpl* sd = static_cast(SDFS.getImpl().get());