1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

Adding SD.rmdir(). Returning success / failure from SD functions.

This commit is contained in:
David A. Mellis
2010-11-20 14:49:20 -05:00
parent d05a57af19
commit a6f3f27d35
2 changed files with 34 additions and 11 deletions

View File

@ -59,7 +59,9 @@ public:
boolean mkdir(char *filepath);
// Delete the file.
void remove(char *filepath);
boolean remove(char *filepath);
boolean rmdir(char *filepath);
private:
SdFile file;