blob: 97fb52c181ee1613a2970cb0e07dff0026e9aea7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
//
// Created by Oleg Morozenkov on 25.01.17.
//
#ifndef TGBOT_FILETOOLS_H
#define TGBOT_FILETOOLS_H
#include <string>
/**
* @ingroup tools
*/
namespace FileTools {
/**
* Reads whole file to string.
* @param filePath Path to a file
* @return string with file contents
*/
std::string read(const std::string& filePath);
/**
* Save file to disk.
* @param filePath Path to a file
* @return bool success
*/
bool write(const std::string& content, const std::string& filePath);
};
#endif //TGBOT_FILETOOLS_H
|