summaryrefslogtreecommitdiffhomepage
path: root/file.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'file.cpp')
-rw-r--r--file.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/file.cpp b/file.cpp
index 0c28511..4e10035 100644
--- a/file.cpp
+++ b/file.cpp
@@ -8,10 +8,16 @@ using namespace std::string_literals;
std::string Reichwein::File::getFile(const fs::path& filename)
{
- std::ifstream file(filename.string(), std::ios::in | std::ios::binary | std::ios::ate);
+ std::ifstream file(filename.string(), std::ios::in | std::ios::binary);
if (file.is_open()) {
+ file.seekg(0, std::ios::end);
std::ifstream::pos_type fileSize = file.tellg();
+ if (fileSize < 0) { // on pseudo-files (e.g. /proc/*), this doesn't work. Use a slower workaround:
+ std::stringstream buffer;
+ buffer << file.rdbuf();
+ return buffer.str();
+ }
file.seekg(0, std::ios::beg);
std::string bytes(fileSize, ' ');