diff options
author | Mattes D <github@xoft.cz> | 2015-04-11 10:06:08 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-04-11 10:06:08 +0200 |
commit | c4842cb9aa81634799dce0a5cfa76654b9f17ab4 (patch) | |
tree | 52160dc47a29a72903448551ace51dc180b95797 /src/OSSupport/File.h | |
parent | Fixed plugin hook calls when unloading plugins. (diff) | |
download | cuberite-c4842cb9aa81634799dce0a5cfa76654b9f17ab4.tar cuberite-c4842cb9aa81634799dce0a5cfa76654b9f17ab4.tar.gz cuberite-c4842cb9aa81634799dce0a5cfa76654b9f17ab4.tar.bz2 cuberite-c4842cb9aa81634799dce0a5cfa76654b9f17ab4.tar.lz cuberite-c4842cb9aa81634799dce0a5cfa76654b9f17ab4.tar.xz cuberite-c4842cb9aa81634799dce0a5cfa76654b9f17ab4.tar.zst cuberite-c4842cb9aa81634799dce0a5cfa76654b9f17ab4.zip |
Diffstat (limited to '')
-rw-r--r-- | src/OSSupport/File.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/OSSupport/File.h b/src/OSSupport/File.h index 1cf5c71d7..6ee080480 100644 --- a/src/OSSupport/File.h +++ b/src/OSSupport/File.h @@ -131,6 +131,18 @@ public: a_FileName may contain path specification. */ static AString ChangeFileExt(const AString & a_FileName, const AString & a_NewExt); + /** Returns the last modification time (in current timezone) of the specified file. + The value returned is in the same units as the value returned by time() function. + If the file is not found / accessible, zero is returned. */ + static unsigned GetLastModificationTime(const AString & a_FileName); + + /** Returns the path separator used by the current platform. + Note that the platform / CRT may support additional path separators (such as slashes on Windows), these don't get reported. */ + static AString GetPathSeparator(void); + + /** Returns the customary executable extension used by the current platform. */ + static AString GetExecutableExt(void); + // tolua_end /** Returns the list of all items in the specified folder (files, folders, nix pipes, whatever's there). */ |