Bladeren bron

Add FS rename

main
PaulStoffregen 4 jaren geleden
bovenliggende
commit
fcf4dfde09
3 gewijzigde bestanden met toevoegingen van 3 en 0 verwijderingen
  1. +1
    -0
      teensy/FS.h
  2. +1
    -0
      teensy3/FS.h
  3. +1
    -0
      teensy4/FS.h

+ 1
- 0
teensy/FS.h Bestand weergeven

@@ -167,6 +167,7 @@ public:
virtual File open(const char *filename, uint8_t mode = FILE_READ);
virtual bool exists(const char *filepath);
virtual bool mkdir(const char *filepath);
virtual bool rename(const char *oldfilepath, const char *newfilepath);
virtual bool remove(const char *filepath);
virtual bool rmdir(const char *filepath);
};

+ 1
- 0
teensy3/FS.h Bestand weergeven

@@ -167,6 +167,7 @@ public:
virtual File open(const char *filename, uint8_t mode = FILE_READ);
virtual bool exists(const char *filepath);
virtual bool mkdir(const char *filepath);
virtual bool rename(const char *oldfilepath, const char *newfilepath);
virtual bool remove(const char *filepath);
virtual bool rmdir(const char *filepath);
};

+ 1
- 0
teensy4/FS.h Bestand weergeven

@@ -167,6 +167,7 @@ public:
virtual File open(const char *filename, uint8_t mode = FILE_READ);
virtual bool exists(const char *filepath);
virtual bool mkdir(const char *filepath);
virtual bool rename(const char *oldfilepath, const char *newfilepath);
virtual bool remove(const char *filepath);
virtual bool rmdir(const char *filepath);
};

Laden…
Annuleren
Opslaan