X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/70702af1370e44e32fb2c3c507e4759a187b4fe5..289f6a146c0b2087607d8d8659531ea90142779a:/fatfs/doc/en/findnext.html diff --git a/fatfs/doc/en/findnext.html b/fatfs/doc/en/findnext.html deleted file mode 100644 index c8dd3f5..0000000 --- a/fatfs/doc/en/findnext.html +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - -FatFs - f_findnext - - - - -
-

f_findnext

-

The f_findnext function searches for a next matched object

-
-FRESULT f_findnext (
-  DIR* dp,              /* [IN] Poninter to the directory object */
-  FILINFO* fno          /* [OUT] Pointer to the file information structure */
-);
-
-
- -
-

Parameters

-
-
dp
-
Pointer to the valid directory object created by f_findfirst function.
-
fno
-
Pointer to the file information structure to store the information about the found directory item.
-
-
- - -
-

Return Values

-

-FR_OK, -FR_DISK_ERR, -FR_INT_ERR, -FR_NOT_READY, -FR_INVALID_OBJECT, -FR_TIMEOUT, -FR_NOT_ENOUGH_CORE -

-
- - -
-

Description

-

It continues the search from a previous call to the f_findfirst or f_findnext function. If found, the information about the object is stored into the file information structure. If no item to be read, a null string will be returned into fno->fname[].

-
- - -
-

QuickInfo

-

This is a wrapper function of f_readdir function. Available when _USE_FIND == 1 and _FS_MINIMIZE <= 1.

-
- - -
-

See Also

-

f_findfirst, f_closedir, DIR, FILINFO

-
- -

Return

- -