]> cloudbase.mooo.com Git - z180-stamp.git/blobdiff - fatfs/doc/en/sfileinfo.html
Import fatfs R0.13b
[z180-stamp.git] / fatfs / doc / en / sfileinfo.html
diff --git a/fatfs/doc/en/sfileinfo.html b/fatfs/doc/en/sfileinfo.html
deleted file mode 100644 (file)
index ac254a1..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">\r
-<html lang="en">\r
-<head>\r
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">\r
-<meta http-equiv="Content-Style-Type" content="text/css">\r
-<link rel="up" title="FatFs" href="../00index_e.html">\r
-<link rel="alternate" hreflang="ja" title="Japanese" href="../ja/sfileinfo.html">\r
-<link rel="stylesheet" href="../css_e.css" type="text/css" media="screen" title="ELM Default">\r
-<title>FatFs - FILINFO</title>\r
-</head>\r
-\r
-<body>\r
-\r
-<div class="para">\r
-<h2>FILINFO</h2>\r
-<p>The <tt>FILINFO</tt> structure holds a file information returned by <tt>f_readdir()</tt> and <tt>f_stat()</tt> function.</p>\r
-<pre>\r
-<span class="k">typedef struct</span> {\r
-    DWORD fsize;      <span class="c">/* File size */</span>\r
-    WORD  fdate;      <span class="c">/* Last modified date */</span>\r
-    WORD  ftime;      <span class="c">/* Last modified time */</span>\r
-    BYTE  fattrib;    <span class="c">/* Attribute */</span>\r
-    TCHAR fname[13];  <span class="c">/* Short file name (8.3 format) */</span>\r
-<span class="k">#if</span> _USE_LFN\r
-    TCHAR* lfname;    <span class="c">/* Pointer to the LFN buffer */</span>\r
-    int   lfsize;     <span class="c">/* Size of the LFN buffer in unit of TCHAR */</span>\r
-<span class="k">#endif</span>\r
-} FILINFO;\r
-</pre>\r
-</div>\r
-\r
-<h4>Members</h4>\r
-<dl>\r
-<dt>fsize</dt>\r
-<dd>Indicates size of the file in unit of byte. Always zero for directories.</dd>\r
-<dt>fdate</dt>\r
-<dd>Indicates the date that the file was modified or the directory was created.<br>\r
-<dl>\r
-<dt>bit15:9</dt>\r
-<dd>Year origin from 1980 (0..127)</dd>\r
-<dt>bit8:5</dt>\r
-<dd>Month (1..12)</dd>\r
-<dt>bit4:0</dt>\r
-<dd>Day (1..31)</dd>\r
-</dl>\r
-</dd>\r
-<dt>ftime</dt>\r
-<dd>Indicates the time that the file was modified or the directory was created.<br>\r
-<dl>\r
-<dt>bit15:11</dt>\r
-<dd>Hour (0..23)</dd>\r
-<dt>bit10:5</dt>\r
-<dd>Minute (0..59)</dd>\r
-<dt>bit4:0</dt>\r
-<dd>Second / 2 (0..29)</dd>\r
-</dl>\r
-</dd>\r
-<dt>fattrib</dt>\r
-<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>\r
-<dt>fname[]</dt>\r
-<dd>Indicates the file/directory name in 8.3 format null-terminated string. It is always returnd with upper case in non-LFN configuration but it can be returned with lower case in LFN configuration.</dd>\r
-<dt>lfname</dt>\r
-<dd>Pointer to the LFN buffer to store the read LFN. This member must be initialized by application program prior to use this structure. Set a null pointer if LFN is not needed. Not available at non-LFN configuration.</dd>\r
-<dt>lfsize</dt>\r
-<dd>Size of the LFN buffer in unit of TCHAR. This member must be initialized by application program prior to use this structure. Not available at non-LFN configuration.</dd>\r
-</dl>\r
-\r
-<p class="foot"><a href="../00index_e.html">Return</a></p>\r
-</body>\r
-</html>\r