diff options
Diffstat (limited to 'source/OSSupport/File.h')
-rw-r--r-- | source/OSSupport/File.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source/OSSupport/File.h b/source/OSSupport/File.h index cfb3a2019..01663a229 100644 --- a/source/OSSupport/File.h +++ b/source/OSSupport/File.h @@ -121,8 +121,14 @@ public: /// Creates a new folder with the specified name. Returns true if successful. Path may be relative or absolute static bool CreateFolder(const AString & a_FolderPath); + /// Returns the entire contents of the specified file as a string. Returns empty string on error. + static AString ReadWholeFile(const AString & a_FileName); + // tolua_end + /// Returns the list of all items in the specified folder (files, folders, nix pipes, whatever's there). + static AStringVector GetFolderContents(const AString & a_Folder); // Exported in ManualBindings.cpp + int Printf(const char * a_Fmt, ...); private: |