- Added f_truncate(). - Added f_utime(). - Fixed off by one error at FAT sub-type determination. - Fixed btr in f_read() can be mistruncated. - Fixed cached sector is not flushed when create and close without write.
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 | |
| <html lang="en">
 | |
| <head>
 | |
| <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
 | |
| <meta http-equiv="Content-Style-Type" content="text/css">
 | |
| <link rel="up" title="FatFs" href="../00index_e.html">
 | |
| <link rel="stylesheet" href="../css_e.css" type="text/css" media="screen" title="ELM Default">
 | |
| <title>FatFs - FILINFO</title>
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
| 
 | |
| <div class="para">
 | |
| <h2>FILINFO</h2>
 | |
| <p>The <tt>FILINFO</tt> structure holds a file information returned by <tt>f_stat()</tt> and <tt>f_readdir()</tt>.</p>
 | |
| <pre>
 | |
| typedef struct _FILINFO {
 | |
|     DWORD fsize;            /* Size */
 | |
|     WORD fdate;             /* Date */
 | |
|     WORD ftime;             /* Time */
 | |
|     BYTE fattrib;           /* Attribute */
 | |
|     char fname[8+1+3+1];    /* Name */
 | |
| } FILINFO;
 | |
| </pre>
 | |
| </div>
 | |
| 
 | |
| <h4>Members</h4>
 | |
| <dl>
 | |
| <dt>fsize</dt>
 | |
| <dd>Indicates size of the file in unit of byte. This is always zero when it is a directory.</dd>
 | |
| <dt>fdate</dt>
 | |
| <dd>Indicates the date that the file was modified or the directory was created.<br>
 | |
| <dl>
 | |
| <dt>bit15:9</dt>
 | |
| <dd>Year from 1980 (0..127)</dd>
 | |
| <dt>bit8:5</dt>
 | |
| <dd>Month (1..12)</dd>
 | |
| <dt>bit4:0</dt>
 | |
| <dd>Day (1..31)</dd>
 | |
| </dl>
 | |
| </dd>
 | |
| <dt>ftime</dt>
 | |
| <dd>Indicates the time that the file was modified or the directory was created.<br>
 | |
| <dl>
 | |
| <dt>bit15:11</dt>
 | |
| <dd>Hour (0..23)</dd>
 | |
| <dt>bit10:5</dt>
 | |
| <dd>Minute (0..59)</dd>
 | |
| <dt>bit4:0</dt>
 | |
| <dd>Second / 2 (0..29)</dd>
 | |
| </dl>
 | |
| </dd>
 | |
| <dt>fattrib</dt>
 | |
| <dd>Indicates the file/directory attribute in combination of <tt>AM_DIR</tt>, <tt>AM_RDO</tt>, <tt>AM_HID</tt>, <tt>AM_SYS</tt> and <tt>AM_ARC</tt>.</dd>
 | |
| <dt>fname[]</dt>
 | |
| <dd>Indicates the file/directory name in 8.3 format null-terminated string.</dd>
 | |
| </dl>
 | |
| 
 | |
| <p class="foot"><a href="../00index_e.html">Return</a></p>
 | |
| </body>
 | |
| </html>
 |