FatFS
FILINFO::fname
is only used within FatFS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (1/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
FatFS
FILINFO::fname
FILINFO::fname field
Syntax
Show:
Summary
Declaration
from
ff.h:260
TCHAR
fname
[
FF_LFN_BUF
+
1
]
;
Examples
References
from
examples
Code
Location
Referrer
TCHAR
fname
[
FF_LFN_BUF
+
1
]
;
/* Primary file name */
ff.h:260
TCHAR
fname
[
12
+
1
]
;
/* File name */
ff.h:262
fno
->
fname
[
0
]
=
0
;
/* Invaidate file info */
ff.c:2638
get_fileinfo()
nw
=
put_utf
(
(
DWORD
)
hs
<
<
16
|
wc
,
&
fno
->
fname
[
di
]
,
FF_LFN_BUF
-
di
)
;
/* Store it in API encoding */
ff.c:2685
get_fileinfo()
fno
->
fname
[
di
]
=
0
;
/* Terminate the LFN (null string means LFN is invalid) */
ff.c:2693
get_fileinfo()
if
(
fno
->
fname
[
0
]
==
0
)
{
/* If LFN is invalid, altname[] needs to be copied to fname[] */
ff.c:2722
get_fileinfo()
fno
->
fname
[
di
++
]
=
'\?'
;
ff.c:2724
get_fileinfo()
fno
->
fname
[
di
]
=
(
TCHAR
)
wc
;
ff.c:2730
get_fileinfo()
fno
->
fname
[
di
]
=
0
;
/* Terminate the LFN */
ff.c:2733
get_fileinfo()
if
(
si
==
9
)
fno
->
fname
[
di
++
]
=
'.'
;
/* Insert a . if extension is exist */
ff.c:2743
get_fileinfo()
fno
->
fname
[
di
++
]
=
c
;
ff.c:2744
get_fileinfo()
fno
->
fname
[
di
]
=
0
;
/* Terminate the SFN */
ff.c:2746
get_fileinfo()
"/%s"
,
fat_dir
->
filinfo
.
fname
)
;
vfs_fat.c:942
vfs_fat_readdir()
"%s/%s"
,
fat_ctx
->
dir_path
,
fat_dir
->
filinfo
.
fname
)
;
vfs_fat.c:949
vfs_fat_readdir()
if
(
fat_dir
->
filinfo
.
fname
[
0
]
==
0
)
{
vfs_fat.c:968
vfs_fat_readdir_r()
strlcpy
(
entry
->
d_name
,
fat_dir
->
filinfo
.
fname
,
vfs_fat.c:979
vfs_fat_readdir_r()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
FILINFO::fname
is read by 3 functions:
All items filtered out
FILINFO::fname
get_fileinfo()
vfs_fat_readdir()
vfs_fat_readdir_r()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out