diff options
| author | Tim Keller <geekboy1011@gmail.com> | 2021-10-17 16:04:23 (GMT) |
|---|---|---|
| committer | Tim Keller <geekboy1011@gmail.com> | 2021-12-10 01:18:57 (GMT) |
| commit | 91c644b43c250b0a03047349182828df31ddcbd2 (patch) | |
| tree | 9feec7231acc3192468d281a8b091683efe14603 /src/components/fs/FS.h | |
| parent | f57f797ff54d9ee8864d3fc62f0c8662df13aad8 (diff) | |
direcetory listings maybe?
Added LISTDIR command and notify responses.
Diffstat (limited to 'src/components/fs/FS.h')
| -rw-r--r-- | src/components/fs/FS.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/fs/FS.h b/src/components/fs/FS.h index 75ba16c..28d28d3 100644 --- a/src/components/fs/FS.h +++ b/src/components/fs/FS.h @@ -21,6 +21,9 @@ namespace Pinetime { int FileDelete(const char* fileName); + int DirOpen(const char* path, lfs_dir_t* lfs_dir); + int DirClose(lfs_dir_t* lfs_dir); + int DirRead(lfs_dir_t* dir, lfs_info* info); int DirCreate(const char* path); int DirDelete(const char* path); |
