diff options
Diffstat (limited to 'source/OSSupport/File.cpp')
-rw-r--r-- | source/OSSupport/File.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/source/OSSupport/File.cpp b/source/OSSupport/File.cpp index bd2670217..cc0916711 100644 --- a/source/OSSupport/File.cpp +++ b/source/OSSupport/File.cpp @@ -269,6 +269,24 @@ bool cFile::Exists(const AString & a_FileName) +bool cFile::Delete(const AString & a_FileName) +{ + return (remove(a_FileName.c_str()) == 0); +} + + + + + +bool cFile::Rename(const AString & a_OrigFileName, const AString & a_NewFileName) +{ + return (rename(a_OrigFileName.c_str(), a_NewFileName.c_str()) == 0); +} + + + + + int cFile::Printf(const char * a_Fmt, ...) { AString buf; |