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:
@ -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;
|
||||
|
Reference in New Issue
Block a user