X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/289f6a146c0b2087607d8d8659531ea90142779a..7aaec0f97677b451e024ef5d1cd2b675a914d440:/fatfs/documents/doc/sfileinfo.html diff --git a/fatfs/documents/doc/sfileinfo.html b/fatfs/documents/doc/sfileinfo.html index b4c9063..db0f45e 100644 --- a/fatfs/documents/doc/sfileinfo.html +++ b/fatfs/documents/doc/sfileinfo.html @@ -13,7 +13,7 @@

FILINFO

-

The FILINFO structure holds information about the object returned by f_readdir, f_findfirst, f_findnext and f_stat function. Be careful in the size of structure when LFN is enabled.

+

The FILINFO structure holds information about the object retrieved by f_readdir, f_findfirst, f_findnext and f_stat function. Be careful in the size of structure when LFN is enabled.

 typedef struct {
     FSIZE_t fsize;               /* File size */
@@ -33,9 +33,9 @@
 

Members

fsize
-
Indicates size of the file in unit of byte. FSIZE_t is an alias of integer type either DWORD(32-bit) or QWORD(64-bit) depends on the configuration option FF_FS_EXFAT. Do not care when the item is a directory.
+
Size of the file in unit of byte. FSIZE_t is an alias of integer type either DWORD(32-bit) or QWORD(64-bit) depends on the configuration option FF_FS_EXFAT. Do not care if the item is a sub-directory.
fdate
-
Indicates the date when the file was modified or the directory was created.
+
The date when the file was modified or the directory was created.
bit15:9
Year origin from 1980 (0..127)
@@ -46,7 +46,7 @@
ftime
-
Indicates the time when the file was modified or the directory was created.
+
The time when the file was modified or the directory was created.
bit15:11
Hour (0..23)
@@ -57,7 +57,7 @@
fattrib
-
Indicates the attribute flags in combination of:
+
The attribute flags in combination of:
@@ -68,9 +68,9 @@
FlagMeaning
AM_RDORead-only. Write mode open and deleting is rejected.
fname[]
-
The null-terminated object name is stored. A null string is stored when no item to read and it indicates this structure is invalid. The size of fname[] and altname[] each can be configured at LFN configuration.
+
Null-terminated object name. A null string is stored when no item to read and it indicates this structure is invalid. The size of fname[] and altname[] each can be configured in LFN configuration.
altname[]
-
Alternative object name is stored if available. This member is not available at non-LFN configuration.
+
Alternative object name is stored if available. This member is not available in non-LFN configuration.

Return