1
0

APIDump: Documented the new cFile API functions.

This commit is contained in:
madmaxoft
2013-10-09 11:31:38 +02:00
parent 27ce6dd97e
commit 9fc35514e6
2 changed files with 26 additions and 2 deletions

View File

@@ -103,8 +103,8 @@ public:
/// Deletes a file, returns true if successful
static bool Delete(const AString & a_FileName);
/// Renames a file, returns true if successful. May fail if dest already exists (libc-dependant)!
static bool Rename(const AString & a_OrigFileName, const AString & a_NewFileName);
/// Renames a file or folder, returns true if successful. May fail if dest already exists (libc-dependant)!
static bool Rename(const AString & a_OrigPath, const AString & a_NewPath);
/// Copies a file, returns true if successful.
static bool Copy(const AString & a_SrcFileName, const AString & a_DstFileName);