add rm command to remove file

This commit is contained in:
liamcottle
2025-06-07 15:44:36 +12:00
parent 0f601752e4
commit a22c176d45
3 changed files with 18 additions and 0 deletions

View File

@@ -38,4 +38,5 @@ public:
uint8_t getBlobByKey(const uint8_t key[], int key_len, uint8_t dest_buf[]);
bool putBlobByKey(const uint8_t key[], int key_len, const uint8_t src_buf[], uint8_t len);
File openRead(const char* filename);
bool removeFile(const char* filename);
};