|
| STRINGS_API bool | BlamStrings::Utils::IO::FileExists (std::string name) |
| | Checks if the specified file exists. More...
|
| |
| STRINGS_API int | BlamStrings::Utils::IO::CreateNewFile (std::string filename, std::string file_contents) |
| | Creates a file with the specified contents. More...
|
| |
| STRINGS_API int | BlamStrings::Utils::IO::CreateFileFromResource (HMODULE module_handle, std::string filename, int res_id, const char *res_type) |
| | Creates a file with the contents pulled from the specified application resource. More...
|
| |
| STRINGS_API int | BlamStrings::Utils::IO::CreateFileFromHTMLResource (HMODULE module_handle, std::string filename, int res_id) |
| | Creates a file with the contents pulled from the specified application HTML resource. More...
|
| |
| STRINGS_API int | BlamStrings::Utils::IO::CreateFileFromPNGResource (HMODULE module_handle, std::string filename, int res_id) |
| | Creates a file with the contents pulled from the specified application PNG resource. More...
|
| |
| STRINGS_API void | BlamStrings::Utils::IO::ValidatePath (std::string path) |
| | Validates that the specified path exists. More...
|
| |
| STRINGS_API void | BlamStrings::Utils::IO::OpenGameDirectory () |
| | Opens the engine's game directory in Windows Explorer. More...
|
| |
| STRINGS_API std::string | BlamStrings::Utils::IO::GetApplicationDir () |
| | Retrieves the application's working directory. More...
|
| |
| STRINGS_API bool | BlamStrings::Utils::IO::ReadBinaryFile (std::string path, void *data, int64_t *size) |
| | Reads a file as raw binary data. More...
|
| |
| STRINGS_API std::vector< std::string > | BlamStrings::Utils::IO::GetFileContentsAsLines (std::string path) |
| | Reads a file as a list of strings. More...
|
| |
| STRINGS_API std::string | BlamStrings::Utils::IO::GetFileContentsAsString (std::string path) |
| | Reads a file as a string. More...
|
| |
| STRINGS_API std::vector< std::string > | BlamStrings::Utils::IO::GetFileList (std::string path) |
| | Retrieves the list of all files in a given directory. More...
|
| |
| STRINGS_API std::vector< std::string > | BlamStrings::Utils::IO::GetDirectoryList (std::string path) |
| | Retrieves the list of all folders in the root of a given directory. More...
|
| |