-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfiles.cpp
120 lines (104 loc) · 2.25 KB
/
files.cpp
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#include "files.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <fstream>
bool directory_exists(std::string name)
{
DIR *dir;
dir = opendir(name.c_str());
if (dir) {
closedir(dir);
return true;
}
return false;
}
bool create_directory(std::string name)
{
if (directory_exists(name)) {
return false; // Couldn't create it because it exists...
}
#if (defined _WIN32 || defined __WIN32__)
mkdir(name.c_str());
#else
mkdir(name.c_str(), 0777);
#endif
if (!directory_exists(name)) { // Check to make sure we succeeded
return false;
}
return true;
}
bool file_exists(std::string name)
{
std::ifstream fin;
fin.open(name.c_str());
if (fin.is_open()) {
fin.close();
return true;
}
return false;
}
std::vector<std::string> files_in(std::string dir, std::string suffix)
{
std::vector<std::string> ret;
DIR *dp;
dirent *dirp;
if ( (dp = opendir(dir.c_str())) == NULL )
return ret;
while ( (dirp = readdir(dp)) != NULL ) {
std::string filename(dirp->d_name);
if (suffix == "" || filename.find(suffix) != std::string::npos) {
ret.push_back( std::string(dirp->d_name) );
}
}
closedir(dp);
return ret;
}
std::vector<std::string> directories_in(std::string dir)
{
std::vector<std::string> ret;
DIR *dp;
dirent *dirp;
if ( (dp = opendir(dir.c_str())) == NULL ) {
return ret;
}
while ( (dirp = readdir(dp)) != NULL ) {
#if (defined _WIN32 || defined WINDOWS)
struct stat win_stat;
stat(dirp->d_name, &win_stat);
if (win_stat.st_mode & S_IFDIR) {
#else
if (dirp->d_type == DT_DIR) {
#endif
std::string dname = dirp->d_name;
if (dname[0] != '.') {
ret.push_back( std::string(dirp->d_name) );
}
}
}
return ret;
}
std::string slurp_file(const std::string &filename)
{
std::string ret;
std::ifstream fin;
fin.open(filename.c_str());
if (!fin.is_open()) {
return ret;
}
ret.assign( (std::istreambuf_iterator<char>(fin) ),
(std::istreambuf_iterator<char>() ) );
return ret;
}
void chomp(std::istream& data)
{
if (data.peek() == '\n') {
std::string junk;
std::getline(data, junk);
}
}
void clear_line(std::istream& data)
{
std::string junk;
std::getline(data, junk);
}