Home
last modified time | relevance | path

Searched refs:path (Results 1 – 2 of 2) sorted by relevance

/fatfs-latest/include/
Dff.h305 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-latest/
Dff.c2871 const TCHAR** path /* Pointer to pointer to the segment in the path string */ argument
2884 p = *path; lfn = dp->obj.fs->lfnbuf; di = 0;
2902 *path = p; /* Return pointer to the next segment */
3008 p = *path; sfn = dp->fn;
3019 *path = p + si; /* Return pointer to the next segment */
3056 *path = &p[si]; /* Return pointer to the next segment */
3075 const TCHAR* path /* Full-path string to find a file or directory */ argument
3084 …if (!IsSeparator(*path) && (FF_STR_VOLUME_ID != 2 || !IsTerminator(*path))) { /* Without heading s…
3089 while (IsSeparator(*path)) path++; /* Strip separators */
3109 if ((UINT)*path < ' ') { /* Null path name is the origin directory itself */
[all …]