FRESULT f_read (
FIL *fp, /* Pointer to the file object */
BYTE *buff, /* Pointer to data buffer */
WORD btr, /* Number of bytes to read */
WORD *br /* Pointer to number of bytes read */
)
FRESULT f_write (
FIL *fp, /* Pointer to the file object */
const BYTE *buff, /* Pointer to the data to be written */
WORD btw, /* Number of bytes to write */
WORD *bw /* Pointer to number of bytes written */
)
FRESULT f_opendir (
DIR *scan, /* Pointer to directory object to initialize */
const char *path /* Pointer to the directory path, null str means the root */