Lines Matching refs:path
305 FRESULT f_open (FIL* fp, const TCHAR* path, BYTE mode); /* Open or create a file */
312 FRESULT f_opendir (DIR* dp, const TCHAR* path); /* Open a directory */
315 FRESULT f_findfirst (DIR* dp, FILINFO* fno, const TCHAR* path, const TCHAR* pattern); /* Find first…
317 FRESULT f_mkdir (const TCHAR* path); /* Create a sub directory */
318 FRESULT f_unlink (const TCHAR* path); /* Delete an existing file or directory */
320 FRESULT f_stat (const TCHAR* path, FILINFO* fno); /* Get file status */
321 FRESULT f_chmod (const TCHAR* path, BYTE attr, BYTE mask); /* Change attribute of a file/dir */
322 FRESULT f_utime (const TCHAR* path, const FILINFO* fno); /* Change timestamp of a file/dir */
323 FRESULT f_chdir (const TCHAR* path); /* Change current directory */
324 FRESULT f_chdrive (const TCHAR* path); /* Change current drive */
326 FRESULT f_getfree (const TCHAR* path, DWORD* nclst, FATFS** fatfs); /* Get number of free clusters …
327 FRESULT f_getlabel (const TCHAR* path, TCHAR* label, DWORD* vsn); /* Get volume label */
331 FRESULT f_mount (FATFS* fs, const TCHAR* path, BYTE opt); /* Mount/Unmount a logical drive */
332 FRESULT f_mkfs (const TCHAR* path, const MKFS_PARM* opt, void* work, UINT len); /* Create a FAT vol…
346 #define f_rmdir(path) f_unlink(path) argument
347 #define f_unmount(path) f_mount(0, path, 0) argument