diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-01 18:59:36 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-05-01 18:59:36 +0200 |
commit | 7741de1dbf32136b6f15b914fd2f5a775e4b5d75 (patch) | |
tree | 595a61f85566e3465382633e24b51f0239670ff3 /source/OSSupport | |
parent | TNT: Added physics to TNT entity (diff) | |
download | cuberite-7741de1dbf32136b6f15b914fd2f5a775e4b5d75.tar cuberite-7741de1dbf32136b6f15b914fd2f5a775e4b5d75.tar.gz cuberite-7741de1dbf32136b6f15b914fd2f5a775e4b5d75.tar.bz2 cuberite-7741de1dbf32136b6f15b914fd2f5a775e4b5d75.tar.lz cuberite-7741de1dbf32136b6f15b914fd2f5a775e4b5d75.tar.xz cuberite-7741de1dbf32136b6f15b914fd2f5a775e4b5d75.tar.zst cuberite-7741de1dbf32136b6f15b914fd2f5a775e4b5d75.zip |
Diffstat (limited to 'source/OSSupport')
-rw-r--r-- | source/OSSupport/File.cpp | 18 | ||||
-rw-r--r-- | source/OSSupport/File.h | 6 |
2 files changed, 24 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; diff --git a/source/OSSupport/File.h b/source/OSSupport/File.h index fe5d38bd0..8a057afa8 100644 --- a/source/OSSupport/File.h +++ b/source/OSSupport/File.h @@ -93,6 +93,12 @@ public: /// Returns true if the file specified exists static bool Exists(const AString & a_FileName); + /// 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); + int Printf(const char * a_Fmt, ...); private: |