Changes between Initial Version and Version 1 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/FileCopy


Ignore:
Timestamp:
05/17/24 12:43:32 (6 months ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/FileCopy

    v1 v1  
     1= FileCopy =
     2Copy a file
     3
     4{{{
     5int FileCopy(const char* filePathFrom, const char* filePathTo, mode_t mode);
     6}}}
     7
     8== Parameters ==
     9
     10 * filePathFrom - full path of source file to copy
     11 * filePathTo - full path of destination directory or file
     12
     13== Return Value ==
     14
     15 * Returns 0 if successful, -1 if error
     16
     17== Remarks ==
     18
     19
     20== Examples ==
     21
     22{{{
     23}}}
     24
     25
     26== See Also ==
     27
     28 * [wiki:UnmountDirectory UnmountDirectory]
     29