1 #ifndef ESP8266NDN_PORT_FS_HPP
2 #define ESP8266NDN_PORT_FS_HPP
13 bool open(
const char* path);
15 int read(
const char* filename, uint8_t* buffer,
size_t count);
17 bool write(
const char* filename,
const uint8_t* buffer,
size_t count);
22 bool joinPath(
const char* filename);
25 static constexpr
size_t maxNameLen = 31;
26 char m_path[maxNameLen + maxNameLen + 1];
File storage on microcontroller filesystem.
Definition: fs.hpp:11
int read(const char *filename, uint8_t *buffer, size_t count)
bool unlink(const char *filename)
bool open(const char *path)
bool write(const char *filename, const uint8_t *buffer, size_t count)
Definition: autoconfig.hpp:24
esp8266ndn::ndnph_port::FileStore FileStore
Definition: fs.hpp:35