6c9e28ff42
- added gitattributes file to force crlf for hpp/cpp/lua
75 lines
1.4 KiB
C++
75 lines
1.4 KiB
C++
#include "STDInclude.hpp"
|
|
|
|
namespace Utils
|
|
{
|
|
namespace IO
|
|
{
|
|
bool FileExists(std::string file)
|
|
{
|
|
return std::ifstream(file).good();
|
|
}
|
|
|
|
void WriteFile(std::string file, std::string data, bool append)
|
|
{
|
|
auto pos = file.find_last_of("/\\");
|
|
if (pos != std::string::npos)
|
|
{
|
|
CreateDirectory(file.substr(0, pos));
|
|
}
|
|
|
|
std::ofstream stream(file, std::ios::binary | std::ofstream::out | (append ? std::ofstream::app : std::ofstream::out));
|
|
|
|
if (stream.is_open())
|
|
{
|
|
stream.write(data.data(), data.size());
|
|
stream.close();
|
|
}
|
|
}
|
|
|
|
std::string ReadFile(std::string file)
|
|
{
|
|
std::string buffer;
|
|
|
|
if (FileExists(file))
|
|
{
|
|
std::streamsize size = 0;
|
|
std::ifstream stream(file, std::ios::binary);
|
|
if (!stream.is_open()) return buffer;
|
|
|
|
stream.seekg(0, std::ios::end);
|
|
size = stream.tellg();
|
|
stream.seekg(0, std::ios::beg);
|
|
|
|
if (size > -1)
|
|
{
|
|
buffer.clear();
|
|
buffer.resize((uint32_t)size);
|
|
|
|
stream.read(const_cast<char*>(buffer.data()), size);
|
|
}
|
|
|
|
stream.close();
|
|
}
|
|
|
|
return buffer;
|
|
}
|
|
|
|
bool CreateDirectory(std::string dir)
|
|
{
|
|
return std::experimental::filesystem::create_directories(dir);
|
|
}
|
|
|
|
std::vector<std::string> ListFiles(std::string dir)
|
|
{
|
|
std::vector<std::string> files;
|
|
|
|
for (auto& file : std::experimental::filesystem::directory_iterator(dir))
|
|
{
|
|
files.push_back(file.path().generic_string());
|
|
}
|
|
|
|
return files;
|
|
}
|
|
}
|
|
}
|