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=utf-8"> 5<meta http-equiv="Content-Style-Type" content="text/css"> 6<link rel="stylesheet" href="../css_e.css" type="text/css" media="screen" title="ELM Default"> 7<title>FatFs - f_write</title> 8</head> 9 10<body> 11 12<div class="para func"> 13<h2>f_write</h2> 14<p>The f_write writes data to a file.</p> 15<pre> 16FRESULT f_write ( 17 FIL* <span class="arg">fp</span>, <span class="c">/* [IN] Pointer to the file object structure */</span> 18 const void* <span class="arg">buff</span>, <span class="c">/* [IN] Pointer to the data to be written */</span> 19 UINT <span class="arg">btw</span>, <span class="c">/* [IN] Number of bytes to write */</span> 20 UINT* <span class="arg">bw</span> <span class="c">/* [OUT] Pointer to the variable to return number of bytes written */</span> 21); 22</pre> 23</div> 24 25<div class="para arg"> 26<h4>Parameters</h4> 27<dl class="par"> 28<dt>fp</dt> 29<dd>Pointer to the open file object structure. If a null pointer is given, the function fails with <tt>FR_INVALID_OBJECT</tt>.</dd> 30<dt>buff</dt> 31<dd>Pointer to the data to be written.</dd> 32<dt>btw</dt> 33<dd>Specifies number of bytes to write in range of <tt>UINT</tt> type. If the data needs to be written fast, it should be written in large chunk as possible.</dd> 34<dt>bw</dt> 35<dd>Pointer to the variable in <tt>UINT</tt> type that receives the number of bytes written. This value is always valid after the function call regardless of the function return code. If the return value is equal to <tt class="arg">btw</tt>, the function return code should be <tt>FR_OK</tt>.</dd> 36</dl> 37</div> 38 39 40<div class="para ret"> 41<h4>Return Values</h4> 42<p> 43<a href="rc.html#ok">FR_OK</a>, 44<a href="rc.html#de">FR_DISK_ERR</a>, 45<a href="rc.html#ie">FR_INT_ERR</a>, 46<a href="rc.html#dn">FR_DENIED</a>, 47<a href="rc.html#io">FR_INVALID_OBJECT</a>, 48<a href="rc.html#tm">FR_TIMEOUT</a> 49</p> 50</div> 51 52 53<div class="para desc"> 54<h4>Description</h4> 55<p>The function starts to write data to the file at the file offset pointed by read/write pointer of the file object. The read/write pointer advances as number of bytes written. After the function succeeded, <tt class="arg">*bw</tt> should be checked to detect the disk full. In case of <tt class="arg">*bw</tt> < <tt class="arg">btw</tt>, it means the volume got full during the write operation. The function can take a time when the volume is full or close to full.</p> 56</div> 57 58 59<div class="para comp"> 60<h4>QuickInfo</h4> 61<p>Available when <tt><a href="config.html#fs_readonly">FF_FS_READONLY</a> == 0</tt>.</p> 62</div> 63 64 65<div class="para use"> 66<h4>Example</h4> 67<p>Refer to the example in <tt>f_open</tt>.</p> 68</div> 69 70 71<div class="para ref"> 72<h4>See Also</h4> 73<p><tt><a href="open.html">f_open</a>, <a href="read.html">f_read</a>, <a href="putc.html">fputc</a>, <a href="puts.html">fputs</a>, <a href="printf.html">fprintf</a>, <a href="close.html">f_close</a>, <a href="sfile.html">FIL</a></tt></p> 74</div> 75 76 77<p class="foot"><a href="../00index_e.html">Return</a></p> 78</body> 79</html> 80