Procházet zdrojové kódy

Add FS usedSize() and totalSize()

main
PaulStoffregen před 4 roky
rodič
revize
7f02c72b15
3 změnil soubory, kde provedl 6 přidání a 0 odebrání
  1. +2
    -0
      teensy/FS.h
  2. +2
    -0
      teensy3/FS.h
  3. +2
    -0
      teensy4/FS.h

+ 2
- 0
teensy/FS.h Zobrazit soubor

@@ -170,6 +170,8 @@ public:
virtual bool rename(const char *oldfilepath, const char *newfilepath);
virtual bool remove(const char *filepath);
virtual bool rmdir(const char *filepath);
virtual uint64_t usedSize();
virtual uint64_t totalSize();
};



+ 2
- 0
teensy3/FS.h Zobrazit soubor

@@ -170,6 +170,8 @@ public:
virtual bool rename(const char *oldfilepath, const char *newfilepath);
virtual bool remove(const char *filepath);
virtual bool rmdir(const char *filepath);
virtual uint64_t usedSize();
virtual uint64_t totalSize();
};



+ 2
- 0
teensy4/FS.h Zobrazit soubor

@@ -170,6 +170,8 @@ public:
virtual bool rename(const char *oldfilepath, const char *newfilepath);
virtual bool remove(const char *filepath);
virtual bool rmdir(const char *filepath);
virtual uint64_t usedSize();
virtual uint64_t totalSize();
};



Načítá se…
Zrušit
Uložit