Skip to content

Commit 1c4d61a

Browse files
authored
Merge pull request #22 from tbaust/master
2 parents 07d93c2 + 7e32623 commit 1c4d61a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/FTPFilesystem.h

+8
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,14 @@ class FTPFileImpl : public fs::FileImpl
5858
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 0, 0)
5959
const char* path() const override { return "not implemented yet"; };
6060
#endif
61+
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(4, 4, 3)
62+
virtual boolean seekDir(long position) override {
63+
return false;
64+
}
65+
virtual String getNextFileName(void) override {
66+
return "";
67+
}
68+
#endif
6169
#if ESP_ARDUINO_VERSION >= ESP_ARDUINO_VERSION_VAL(2, 0, 3)
6270
bool setBufferSize(size_t size) override { return false; };
6371
#endif

0 commit comments

Comments
 (0)