std::vector<char> fileread = readFileIntoVector(std::filesystem::path{dir.path() / "file.csv"});
std::string process_cmdline;
// and then restored
for (const auto &entry : fileread) {
if (entry == '\0')
process_cmdline.push_back(' '); // space
else
process_cmdline.push_back(entry);
}
it's another retard thread