std::string Filesystem::Content(const std::string & path)
{
std::ifstream ifs(path, std::ios::binary);
if (ifs.is_open())
{
std::string str((std::istreambuf_iterator<char>(ifs)), (std::istreambuf_iterator<char>()));
ifs.close();
return str;
}
else
{
throw std::runtime_error("Failed open file : [" + path + "]");
}
}