瀏覽代碼

Add FS usedSize() and totalSize()

main
PaulStoffregen 4 年之前
父節點
當前提交
7f02c72b15
共有 3 個檔案被更改,包括 6 行新增0 行删除
  1. +2
    -0
      teensy/FS.h
  2. +2
    -0
      teensy3/FS.h
  3. +2
    -0
      teensy4/FS.h

+ 2
- 0
teensy/FS.h 查看文件

@@ -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 查看文件

@@ -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 查看文件

@@ -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();
};



Loading…
取消
儲存