Code Block | ||
---|---|---|
| ||
void FSEntry_Copy (CPU_CHAR *name_full_src, |
...
CPU_CHAR *name_full_dest, |
...
CPU_BOOLEAN excl, |
...
FS_ERR *p_err); |
File | Called from | Code enabled by |
---|---|---|
| Application | not |
...
Name of the source file. See section 4-3 “μCthe sub-topic "µC/FS File and Directory Names and Paths”Paths" in the topic Useful Information.
name_full_dest
Name of the destination file.
...
Device access error.
Or entry error (See section B-8 “Entry Error Codes” µC/FS Error Codes).
Returned Value
None.
Notes/Warnings
name_full_src
must be an existing file. It may not be an existing directory.- If excl is
DEF_NO
,name_full_dest
must either not exist or be an existing file; it may not be an existing directory. If excl isDEF_YES
,name_full_dest
must not exist.