1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-08-01 03:47:23 +03:00

Adding SD.remove(file) and another example.

This commit is contained in:
David A. Mellis
2010-11-20 13:07:59 -05:00
parent 5af5619df4
commit 6f0ea10600
3 changed files with 53 additions and 4 deletions

View File

@ -60,6 +60,9 @@ public:
// Create the requested directory heirarchy--if intermediate directories
// do not exist they will be created.
boolean mkdir(char *filepath);
// Delete the file.
void remove(char *filepath);
private:
SdFile file;