summaryrefslogtreecommitdiffstats
path: root/source/OSSupport/File.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/OSSupport/File.h6
1 files changed, 6 insertions, 0 deletions
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: