Searched refs:path (Results 1 – 2 of 2) sorted by relevance
/fatfs-2.7.6/include/ |
D | ff.h | 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 */ [all …]
|
/fatfs-2.7.6/ |
D | ff.c | 2803 const TCHAR** path /* Pointer to pointer to the segment in the path string */ argument 2815 p = *path; lfn = dp->obj.fs->lfnbuf; di = 0; 2833 *path = p; /* Return pointer to the next segment */ 2938 p = *path; sfn = dp->fn; 2949 *path = p + si; /* Return pointer to the next segment */ 2986 *path = &p[si]; /* Return pointer to the next segment */ 3005 const TCHAR* path /* Full-path string to find a file or directory */ argument 3014 …if (!IsSeparator(*path) && (FF_STR_VOLUME_ID != 2 || !IsTerminator(*path))) { /* Without heading s… 3019 while (IsSeparator(*path)) path++; /* Strip separators */ 3039 if ((UINT)*path < ' ') { /* Null path name is the origin directory itself */ [all …]
|