From 5630b9308323c3f3aaa09be8fe0f3aecaa826473 Mon Sep 17 00:00:00 2001 From: Leo C. Date: Sun, 30 Jun 2024 09:37:28 +0200 Subject: Import fatfs R0.15 --- fatfs/documents/doc/sfileinfo.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to '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

-- cgit v1.2.3