FF_Move()
From FullFAT
THIS API IS NOT AVAILABLE UNTIL 1.0.0
Also used for renaming files.
Moves a specified source file, to a specified destination. The source must exist, and the directory of the destination must also exist. Furthermore the destination must not contain a file of the same name as the destination.
Whole directory trees can be moved this way by simply moving the root of the directory tree. This function simply moves directory entries, and does not move any data. It is therefore limited by the speed of directory traversals.
Contents |
Prototype
FF_ERROR FF_Move(FF_IOMAN *pIoman, const FF_T_INT8 *szSourceFile, const FF_T_INT8 *szDestinationFile);
Back to API.
Parameters
pIoman
Pointer to an FF_IOMAN object, as returned from the FF_CreateIOMAN() function.
szSourceFile
Absolute path of the source file or directory.
szDestinationFile
Absolute path of the destination file or directory.
Return Value
UNDEFINED
Example
UNDEFINED
Back to API.

