FatFS
FR_EXIST
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
FR_EXIST
FR_EXIST value
Syntax
Show:
Summary
Declaration
from
ff.h:291
FR_EXIST
;
Examples
References
from
examples
Code
Location
Referrer
FR_EXIST
,
/* (8) Access denied due to prohibited access */
ff.h:291
if
(
mode
&
FA_CREATE_NEW
)
res
=
FR_EXIST
;
/* Cannot create as new file */
ff.c:3783
f_open()
if
(
res
==
FR_OK
)
res
=
FR_EXIST
;
/* Name collision? */
ff.c:5114
f_mkdir()
res
=
(
djn
.
obj
.
sclust
==
djo
.
obj
.
sclust
&&
djn
.
dptr
==
djo
.
dptr
)
?
FR_NO_FILE
:
FR_EXIST
;
ff.c:5238
f_rename()
case
FR_EXIST
:
return
EEXIST
;
vfs_fat.c:328
fresult_to_errno()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
FR_EXIST
is read by 4 functions:
All items filtered out
FR_EXIST
f_open()
f_mkdir()
f_rename()
fresult_to_errno()
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