1e6865dcdSopenharmony_ci<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> 2e6865dcdSopenharmony_ci<html lang="en"> 3e6865dcdSopenharmony_ci<head> 4e6865dcdSopenharmony_ci<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 5e6865dcdSopenharmony_ci<meta http-equiv="Content-Style-Type" content="text/css"> 6e6865dcdSopenharmony_ci<link rel="up" title="FatFs" href="../00index_e.html"> 7e6865dcdSopenharmony_ci<link rel="alternate" hreflang="ja" title="Japanese" href="../ja/findnext.html"> 8e6865dcdSopenharmony_ci<link rel="stylesheet" href="../css_e.css" type="text/css" media="screen" title="ELM Default"> 9e6865dcdSopenharmony_ci<title>FatFs - f_findnext</title> 10e6865dcdSopenharmony_ci</head> 11e6865dcdSopenharmony_ci 12e6865dcdSopenharmony_ci<body> 13e6865dcdSopenharmony_ci 14e6865dcdSopenharmony_ci<div class="para func"> 15e6865dcdSopenharmony_ci<h2>f_findnext</h2> 16e6865dcdSopenharmony_ci<p>The f_findnext function searches for a next matched object</p> 17e6865dcdSopenharmony_ci<pre> 18e6865dcdSopenharmony_ciFRESULT f_findnext ( 19e6865dcdSopenharmony_ci DIR* <span class="arg">dp</span>, <span class="c">/* [IN] Poninter to the directory object */</span> 20e6865dcdSopenharmony_ci FILINFO* <span class="arg">fno</span> <span class="c">/* [OUT] Pointer to the file information structure */</span> 21e6865dcdSopenharmony_ci); 22e6865dcdSopenharmony_ci</pre> 23e6865dcdSopenharmony_ci</div> 24e6865dcdSopenharmony_ci 25e6865dcdSopenharmony_ci<div class="para arg"> 26e6865dcdSopenharmony_ci<h4>Parameters</h4> 27e6865dcdSopenharmony_ci<dl class="par"> 28e6865dcdSopenharmony_ci<dt>dp</dt> 29e6865dcdSopenharmony_ci<dd>Pointer to the valid directory object created by <tt>f_findfirst</tt> function.</dd> 30e6865dcdSopenharmony_ci<dt>fno</dt> 31e6865dcdSopenharmony_ci<dd>Pointer to the file information structure to store the information about the found directory item.</dd> 32e6865dcdSopenharmony_ci</dl> 33e6865dcdSopenharmony_ci</div> 34e6865dcdSopenharmony_ci 35e6865dcdSopenharmony_ci 36e6865dcdSopenharmony_ci<div class="para ret"> 37e6865dcdSopenharmony_ci<h4>Return Values</h4> 38e6865dcdSopenharmony_ci<p> 39e6865dcdSopenharmony_ci<a href="rc.html#ok">FR_OK</a>, 40e6865dcdSopenharmony_ci<a href="rc.html#de">FR_DISK_ERR</a>, 41e6865dcdSopenharmony_ci<a href="rc.html#ie">FR_INT_ERR</a>, 42e6865dcdSopenharmony_ci<a href="rc.html#nr">FR_NOT_READY</a>, 43e6865dcdSopenharmony_ci<a href="rc.html#io">FR_INVALID_OBJECT</a>, 44e6865dcdSopenharmony_ci<a href="rc.html#tm">FR_TIMEOUT</a>, 45e6865dcdSopenharmony_ci<a href="rc.html#nc">FR_NOT_ENOUGH_CORE</a> 46e6865dcdSopenharmony_ci</p> 47e6865dcdSopenharmony_ci</div> 48e6865dcdSopenharmony_ci 49e6865dcdSopenharmony_ci 50e6865dcdSopenharmony_ci<div class="para desc"> 51e6865dcdSopenharmony_ci<h4>Description</h4> 52e6865dcdSopenharmony_ci<p>It continues the search from a previous call to the <tt>f_findfirst</tt> or <tt>f_findnext</tt> 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 <tt>fno->fname[]</tt>.</p> 53e6865dcdSopenharmony_ci</div> 54e6865dcdSopenharmony_ci 55e6865dcdSopenharmony_ci 56e6865dcdSopenharmony_ci<div class="para comp"> 57e6865dcdSopenharmony_ci<h4>QuickInfo</h4> 58e6865dcdSopenharmony_ci<p>This is a wrapper function of <a href="readdir.html"><tt>f_readdir</tt></a> function. Available when <tt><a href="config.html#use_find">FF_USE_FIND</a> == 1</tt> and <tt><a href="config.html#fs_minimize">FF_FS_MINIMIZE</a> <= 1</tt>.</p> 59e6865dcdSopenharmony_ci</div> 60e6865dcdSopenharmony_ci 61e6865dcdSopenharmony_ci 62e6865dcdSopenharmony_ci<div class="para ref"> 63e6865dcdSopenharmony_ci<h4>See Also</h4> 64e6865dcdSopenharmony_ci<p><tt><a href="findfirst.html">f_findfirst</a>, <a href="closedir.html">f_closedir</a>, <a href="sdir.html">DIR</a>, <a href="sfileinfo.html">FILINFO</a></tt></p> 65e6865dcdSopenharmony_ci</div> 66e6865dcdSopenharmony_ci 67e6865dcdSopenharmony_ci<p class="foot"><a href="../00index_e.html">Return</a></p> 68e6865dcdSopenharmony_ci</body> 69e6865dcdSopenharmony_ci</html> 70