Bitcoin ABC  0.26.3
P2P Digital Currency
readwritefile.h
Go to the documentation of this file.
1 // Copyright (c) 2015-2020 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef BITCOIN_UTIL_READWRITEFILE_H
6 #define BITCOIN_UTIL_READWRITEFILE_H
7 
8 #include <fs.h>
9 
10 #include <limits>
11 #include <string>
12 #include <utility>
13 
24 std::pair<bool, std::string>
25 ReadBinaryFile(const fs::path &filename,
26  size_t maxsize = std::numeric_limits<size_t>::max());
27 
32 bool WriteBinaryFile(const fs::path &filename, const std::string &data);
33 
34 #endif // BITCOIN_UTIL_READWRITEFILE_H
Path class wrapper to block calls to the fs::path(std::string) implicit constructor and the fs::path:...
Definition: fs.h:30
std::pair< bool, std::string > ReadBinaryFile(const fs::path &filename, size_t maxsize=std::numeric_limits< size_t >::max())
Read full contents of a file and return them in a std::string.
bool WriteBinaryFile(const fs::path &filename, const std::string &data)
Write contents of std::string to a file.