open.html 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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/open.html">
  8. <link rel="stylesheet" href="../css_e.css" type="text/css" media="screen" title="ELM Default">
  9. <title>FatFs - f_open</title>
  10. </head>
  11. <body>
  12. <div class="para func">
  13. <h2>f_open</h2>
  14. <p>The f_open function creates a <em>file object</em> to be used to access the file.</p>
  15. <pre>
  16. FRESULT f_open (
  17. FIL* <span class="arg">fp</span>, <span class="c">/* [OUT] Pointer to the file object structure */</span>
  18. const TCHAR* <span class="arg">path</span>, <span class="c">/* [IN] File name */</span>
  19. BYTE <span class="arg">mode</span> <span class="c">/* [IN] Mode flags */</span>
  20. );
  21. </pre>
  22. </div>
  23. <div class="para arg">
  24. <h4>Parameters</h4>
  25. <dl class="par">
  26. <dt>fp</dt>
  27. <dd>Pointer to the blank file object structure to be created.</dd>
  28. <dt>path</dt>
  29. <dd>Pointer to a null-terminated string that specifies the <a href="filename.html">file name</a> to open or create.</dd>
  30. <dt>mode</dt>
  31. <dd>Mode flags that specifies the type of access and open method for the file. It is specified by a combination of following flags.<br>
  32. <table class="lst">
  33. <tr><th>Value</th><th>Description</th></tr>
  34. <tr><td>FA_READ</td><td>Specifies read access to the object. Data can be read from the file. Combine with <tt>FA_WRITE</tt> for read-write access.</td></tr>
  35. <tr><td>FA_WRITE</td><td>Specifies write access to the object. Data can be written to the file. Combine with <tt>FA_READ</tt> for read-write access.</td></tr>
  36. <tr><td>FA_OPEN_EXISTING</td><td>Opens the file. The function fails if the file is not existing. (Default)</td></tr>
  37. <tr><td>FA_OPEN_ALWAYS</td><td>Opens the file if it is existing. If not, a new file is created.<br>
  38. To append data to the file, use <a href="lseek.html"><tt>f_lseek()</tt></a> function after file open in this method.</td></tr>
  39. <tr><td>FA_CREATE_NEW</td><td>Creates a new file. The function fails with <tt>FR_EXIST</tt> if the file is existing.</td></tr>
  40. <tr><td>FA_CREATE_ALWAYS</td><td>Creates a new file. If the file is existing, it will be truncated and overwritten.</td></tr>
  41. </table>
  42. </dd>
  43. </dl>
  44. </div>
  45. <div class="para ret">
  46. <h4>Return Values</h4>
  47. <p>
  48. <a href="rc.html#ok">FR_OK</a>,
  49. <a href="rc.html#de">FR_DISK_ERR</a>,
  50. <a href="rc.html#ie">FR_INT_ERR</a>,
  51. <a href="rc.html#nr">FR_NOT_READY</a>,
  52. <a href="rc.html#ok">FR_NO_FILE</a>,
  53. <a href="rc.html#np">FR_NO_PATH</a>,
  54. <a href="rc.html#in">FR_INVALID_NAME</a>,
  55. <a href="rc.html#de">FR_DENIED</a>,
  56. <a href="rc.html#ex">FR_EXIST</a>,
  57. <a href="rc.html#io">FR_INVALID_OBJECT</a>,
  58. <a href="rc.html#wp">FR_WRITE_PROTECTED</a>,
  59. <a href="rc.html#id">FR_INVALID_DRIVE</a>,
  60. <a href="rc.html#ne">FR_NOT_ENABLED</a>,
  61. <a href="rc.html#ns">FR_NO_FILESYSTEM</a>,
  62. <a href="rc.html#tm">FR_TIMEOUT</a>,
  63. <a href="rc.html#lo">FR_LOCKED</a>,
  64. <a href="rc.html#nc">FR_NOT_ENOUGH_CORE</a>,
  65. <a href="rc.html#tf">FR_TOO_MANY_OPEN_FILES</a>
  66. </p>
  67. </div>
  68. <div class="para desc">
  69. <h4>Description</h4>
  70. <p>After <tt>f_open()</tt> function succeeded, the file object is valid. The file object is used for subsequent read/write functions to identify the file. To close an open file, use <a href="close.html"><tt>f_close()</tt></a> function. If the file is modified and not closed properly, the file data will be collapsed.</p>
  71. <p>If duplicated file open is needed, read <a href="appnote.html#dup">here</a> carefully. However duplicated open of a file with write mode flag is always prohibited.</p>
  72. <p>Before using any file function, a work area (file system object) must be registered to the logical drive with <a href="mount.html"><tt>f_mount()</tt></a> function. All API functions except for <a href="fdisk.html"><tt>f_fdisk()</tt></a> function can work after this procedure.</p>
  73. </div>
  74. <div class="para comp">
  75. <h4>QuickInfo</h4>
  76. <p>Always available. The mode flags, <tt>FA_WRITE, FA_CREATE_ALWAYS, FA_CREATE_NEW and FA_OPEN_ALWAYS</tt>, are not available when <tt>_FS_READONLY == 1</tt>.</p>
  77. </div>
  78. <div class="para use">
  79. <h4>Example</h4>
  80. <pre>
  81. <span class="c">/* Read a text file and display it */</span>
  82. FATFS FatFs; <span class="c">/* Work area (file system object) for logical drive */</span>
  83. int main (void)
  84. {
  85. FIL fil; <span class="c">/* File object */</span>
  86. char line[82]; <span class="c">/* Line buffer */</span>
  87. FRESULT fr; <span class="c">/* FatFs return code */</span>
  88. <span class="c">/* Register work area to the default drive */</span>
  89. f_mount(&amp;FatFs, "", 0);
  90. <span class="c">/* Open a text file */</span>
  91. fr = f_open(&amp;fil, "message.txt", FA_READ);
  92. if (fr) return (int)fr;
  93. <span class="c">/* Read all lines and display it */</span>
  94. while (f_gets(line, sizeof line, &amp;fil))
  95. printf(line);
  96. <span class="c">/* Close the file */</span>
  97. f_close(&amp;fil);
  98. return 0;
  99. }
  100. </pre>
  101. <pre>
  102. <span class="c">/* Copy a file "file.bin" on the drive 1 to drive 0 */</span>
  103. int main (void)
  104. {
  105. FATFS fs[2]; <span class="c">/* Work area (file system object) for logical drives */</span>
  106. FIL fsrc, fdst; <span class="c">/* File objects */</span>
  107. BYTE buffer[4096]; <span class="c">/* File copy buffer */</span>
  108. FRESULT fr; <span class="c">/* FatFs function common result code */</span>
  109. UINT br, bw; <span class="c">/* File read/write count */</span>
  110. <span class="c">/* Register work area for each logical drive */</span>
  111. f_mount(&amp;fs[0], "0:", 0);
  112. f_mount(&amp;fs[1], "1:", 0);
  113. <span class="c">/* Open source file on the drive 1 */</span>
  114. fr = f_open(&amp;fsrc, "1:file.bin", FA_OPEN_EXISTING | FA_READ);
  115. if (fr) return (int)fr;
  116. <span class="c">/* Create destination file on the drive 0 */</span>
  117. fr = f_open(&amp;fdst, "0:file.bin", FA_CREATE_ALWAYS | FA_WRITE);
  118. if (fr) return (int)fr;
  119. <span class="c">/* Copy source to destination */</span>
  120. for (;;) {
  121. fr = f_read(&amp;fsrc, buffer, sizeof buffer, &amp;br); <span class="c">/* Read a chunk of source file */</span>
  122. if (fr || br == 0) break; <span class="c">/* error or eof */</span>
  123. fr = f_write(&amp;fdst, buffer, br, &amp;bw); <span class="c">/* Write it to the destination file */</span>
  124. if (fr || bw &lt; br) break; <span class="c">/* error or disk full */</span>
  125. }
  126. <span class="c">/* Close open files */</span>
  127. f_close(&amp;fsrc);
  128. f_close(&amp;fdst);
  129. <span class="c">/* Unregister work area prior to discard it */</span>
  130. f_mount(NULL, "0:", 0);
  131. f_mount(NULL, "1:", 0);
  132. return (int)fr;
  133. }
  134. </pre>
  135. </div>
  136. <div class="para ref">
  137. <h4>See Also</h4>
  138. <p><tt><a href="read.html">f_read</a>, <a href="write.html">f_write</a>, <a href="close.html">f_close</a>, <a href="sfile.html">FIL</a>, <a href="sfatfs.html">FATFS</a></tt></p>
  139. </div>
  140. <p class="foot"><a href="../00index_e.html">Return</a></p>
  141. </body>
  142. </html>