| 56 | TempFilePath& operator=(const TempFilePath&) = delete; |
| 57 | |
| 58 | void append(std::string data) { |
| 59 | std::ofstream file(path, std::ios_base::app); |
| 60 | file << data; |
| 61 | file.flush(); |
| 62 | file.close(); |
| 63 | } |
| 64 | |
| 65 | const int64_t fileSize() { |
| 66 | struct stat st; |
no test coverage detected