| 415 | } |
| 416 | |
| 417 | std::string StringLoadFromFile( const std::filesystem::path & filePath ) |
| 418 | { |
| 419 | std::ifstream file(filePath); |
| 420 | if (!file) { return ""; } |
| 421 | |
| 422 | std::ostringstream buffer; |
| 423 | buffer << file.rdbuf(); |
| 424 | return buffer.str(); |
| 425 | } |
| 426 | |
| 427 | std::tuple<int, std::string, std::string > SystemShell(const std::string & command, bool useCmd, bool blockOnExecution) |
| 428 | { |