API for file operations. More...
Files | |
file | File.h |
SPRESENSE Arduino File library. | |
Classes | |
class | File |
The File class allows for reading from and writing to individual files on the File System. More... | |
Macros | |
#define | FILE_READ O_RDONLY |
#define | FILE_WRITE (O_RDONLY | O_WRONLY | O_CREAT) |
API for file operations.
#define FILE_READ O_RDONLY |
Open the file for reading, starting at the beginning of the file.
#define FILE_WRITE (O_RDONLY | O_WRONLY | O_CREAT) |
Open the file for reading and writing, starting at the end of the file.