blob: 3ec48543706760dfb88a69ca4f7c813bfb213095 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef FILEIO_HPP_
#define FILEIO_HPP_
#include <string>
#include <list>
#include <vector>
// reads the names of files in a directory into the given string vector
int getdir(std::string dir, std::list<std::string>& files);
// reads the given file into a buffer and returns a pointer to the buffer
std::string readFile(const std::string& path);
std::vector<std::string> readFileA(const std::string& path);
void copyFile(const std::string& to, const std::string& from);
bool fileExists(const std::string& file);
#endif // FILEIO_HPP_
|