Parcourir la source

Add rename()

main
PaulStoffregen il y a 5 ans
Parent
révision
c5292aeb8b
1 fichiers modifiés avec 3 ajouts et 0 suppressions
  1. +3
    -0
      src/SD.h

+ 3
- 0
src/SD.h Voir le fichier

bool mkdir(const char *filepath) { bool mkdir(const char *filepath) {
return sdfs.mkdir(filepath); return sdfs.mkdir(filepath);
} }
bool rename(const char *oldfilepath, const char *newfilepath) {
return sdfs.remame(oldfilepath, newfilepath);
}
bool remove(const char *filepath) { bool remove(const char *filepath) {
return sdfs.remove(filepath); return sdfs.remove(filepath);
} }

Chargement…
Annuler
Enregistrer