summaryrefslogtreecommitdiffstats
path: root/src/OSSupport/File.h
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-08-15 07:20:37 +0200
committerMattes D <github@xoft.cz>2014-08-15 07:20:37 +0200
commite553d58eaf4dfdc56ebb1e3155f8b4dd2a33d7f1 (patch)
tree8a4f77b7471841910afbfdf7ebabbba68886c9b1 /src/OSSupport/File.h
parentCheckBasicStyle checks the src folder as well. (diff)
parentRemoved an unneeded cast. (diff)
downloadcuberite-e553d58eaf4dfdc56ebb1e3155f8b4dd2a33d7f1.tar
cuberite-e553d58eaf4dfdc56ebb1e3155f8b4dd2a33d7f1.tar.gz
cuberite-e553d58eaf4dfdc56ebb1e3155f8b4dd2a33d7f1.tar.bz2
cuberite-e553d58eaf4dfdc56ebb1e3155f8b4dd2a33d7f1.tar.lz
cuberite-e553d58eaf4dfdc56ebb1e3155f8b4dd2a33d7f1.tar.xz
cuberite-e553d58eaf4dfdc56ebb1e3155f8b4dd2a33d7f1.tar.zst
cuberite-e553d58eaf4dfdc56ebb1e3155f8b4dd2a33d7f1.zip
Diffstat (limited to 'src/OSSupport/File.h')
-rw-r--r--src/OSSupport/File.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/OSSupport/File.h b/src/OSSupport/File.h
index 2a7ecf0ed..dfb38e839 100644
--- a/src/OSSupport/File.h
+++ b/src/OSSupport/File.h
@@ -60,9 +60,10 @@ public:
/** The mode in which to open the file */
enum eMode
{
- fmRead, // Read-only. If the file doesn't exist, object will not be valid
- fmWrite, // Write-only. If the file already exists, it will be overwritten
- fmReadWrite // Read/write. If the file already exists, it will be left intact; writing will overwrite the data from the beginning
+ fmRead, // Read-only. If the file doesn't exist, object will not be valid
+ fmWrite, // Write-only. If the file already exists, it will be overwritten
+ fmReadWrite, // Read/write. If the file already exists, it will be left intact; writing will overwrite the data from the beginning
+ fmAppend // Write-only. If the file already exists cursor will be moved to the end of the file
} ;
/** Simple constructor - creates an unopened file object, use Open() to open / create a real file */