- Separated out configuration options from ff.h to ffconf.h. - Added a configuration option, _LFN_UNICODE. - Fixed f_unlink() fails to remove a sub-dir on _FS_RPATH. - Fixed name matching error on the 13 char boundary. - Changed f_readdir() to return the SFN with always upper case on non-LFN cfg.
		
			
				
	
	
		
			70 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.4 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 f_stat and f_readdir function.</p>
 | |
| <pre>
 | |
| typedef struct _FILINFO_ {
 | |
|     DWORD fsize;      /* File size */
 | |
|     WORD  fdate;      /* Last modified date */
 | |
|     WORD  ftime;      /* Last modified time */
 | |
|     BYTE  fattrib;    /* Attribute */
 | |
|     char  fname[13];  /* Short file name (8.3 format) */
 | |
| #if _USE_LFN
 | |
|     XCHAR* lfname;    /* Pointer to the LFN buffer */
 | |
|     int   lfsize;     /* Size of LFN buffer [characters] */
 | |
| #endif
 | |
| } 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 origin 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. It is always returnd with upper case on non-LFN configuration but it can be returned with lower case on LFN configuration.</dd>
 | |
| <dt>lfname</dt>
 | |
| <dd>Pointer to the LFN buffer to store the read LFN. This member must be initialized by application prior to use this structure. Not available on non-LFN configuration.</dd>
 | |
| <dt>lfsize</dt>
 | |
| <dd>Size of the LFN buffer in unit of chars. This member must be initialized by application prior to use this structure. Not available on non-LFN configuration.</dd>
 | |
| </dl>
 | |
| 
 | |
| <p class="foot"><a href="../00index_e.html">Return</a></p>
 | |
| </body>
 | |
| </html>
 |