read.html 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  5. <meta http-equiv="Content-Style-Type" content="text/css">
  6. <link rel="up" title="FatFs" href="../00index_e.html">
  7. <link rel="alternate" hreflang="ja" title="Japanese" href="../ja/read.html">
  8. <link rel="stylesheet" href="../css_e.css" type="text/css" media="screen" title="ELM Default">
  9. <title>FatFs - f_read</title>
  10. </head>
  11. <body>
  12. <div class="para func">
  13. <h2>f_read</h2>
  14. <p>The f_read function reads data from a file.</p>
  15. <pre>
  16. FRESULT f_read (
  17. FIL* <span class="arg">fp</span>, <span class="c">/* [IN] File object */</span>
  18. void* <span class="arg">buff</span>, <span class="c">/* [OUT] Buffer to store read data */</span>
  19. UINT <span class="arg">btr</span>, <span class="c">/* [IN] Number of bytes to read */</span>
  20. UINT* <span class="arg">br</span> <span class="c">/* [OUT] Number of bytes read */</span>
  21. );
  22. </pre>
  23. </div>
  24. <div class="para arg">
  25. <h4>Parameters</h4>
  26. <dl class="par">
  27. <dt>fp</dt>
  28. <dd>Pointer to the open file object.</dd>
  29. <dt>buff</dt>
  30. <dd>Pointer to the buffer to store read data.</dd>
  31. <dt>btr</dt>
  32. <dd>Number of bytes to read in range of <tt>UINT</tt> type.</dd>
  33. <dt>br</dt>
  34. <dd>Pointer to the <tt>UINT</tt> variable to return number of bytes read. The value is always valid after the function call regardless of the result.</dd>
  35. </dl>
  36. </div>
  37. <div class="para ret">
  38. <h4>Return Values</h4>
  39. <p>
  40. <a href="rc.html#ok">FR_OK</a>,
  41. <a href="rc.html#de">FR_DISK_ERR</a>,
  42. <a href="rc.html#ie">FR_INT_ERR</a>,
  43. <a href="rc.html#nr">FR_NOT_READY</a>,
  44. <a href="rc.html#io">FR_INVALID_OBJECT</a>,
  45. <a href="rc.html#tm">FR_TIMEOUT</a>
  46. </p>
  47. </div>
  48. <div class="para desc">
  49. <h4>Description</h4>
  50. <p>The file read/write pointer of the file object advances number of bytes read. After the function succeeded, <tt class="arg">*br</tt> should be checked to detect end of the file. In case of <tt class="arg">*br</tt> is less than <tt class="arg">btr</tt>, it means the read/write pointer reached end of the file during read operation.</p>
  51. </div>
  52. <div class="para comp">
  53. <h4>QuickInfo</h4>
  54. <p>Always available.</p>
  55. </div>
  56. <div class="para ref">
  57. <h4>See Also</h4>
  58. <p><tt><a href="open.html">f_open</a>, <a href="gets.html">fgets</a>, <a href="write.html">f_write</a>, <a href="close.html">f_close</a>, <a href="sfile.html">FIL</a></tt></p>
  59. </div>
  60. <p class="foot"><a href="../00index_e.html">Return</a></p>
  61. </body>
  62. </html>