BlackCat_Tensors
A GPU-supported autograd and linear algebra library, designed for neural network construction
filesystem.h
Go to the documentation of this file.
1 #ifndef BLACKCAT_FILESYSTEMS_H_
2 #define BLACKCAT_FILESYSTEMS_H_
3 
4 #include <sys/types.h>
5 #include <sys/stat.h>
6 #include <string>
7 #include <fstream>
8 #include "string.h"
9 
10 namespace bc {
11 namespace filesystem {
12 
13 #if defined _WIN32 || defined __CYGWIN__
14 #define BC_FILE_SEPERATOR '\\'
15 #else
16 #define BC_FILE_SEPERATOR '/'
17 #endif
18 
19 static constexpr char separator = BC_FILE_SEPERATOR;
20 
21 inline bool directory_exists(const std::string& name) {
22 #ifdef _MSC_VER
23  struct stat info;
24  stat(name.c_str(), &info);
25  return info.st_mode & S_IFDIR;
26 #else
27  return system(("test -d " + name).c_str()) == 0;
28 #endif
29 }
30 
31 inline int mkdir(const std::string& name) {
32  return system(("mkdir " + name).c_str());
33 }
34 
35 inline bool file_exists(const std::string& name) {
36  struct stat buffer;
37  return stat(name.c_str(), &buffer) == 0;
38 }
39 
40 inline bc::string make_path(const bc::string& path) {
41  return path;
42 }
43 
44 template<class... Strs>
45 inline bc::string make_path(const bc::string& str, const Strs&... strs) {
46  bc::string right_path = make_path(strs...);
47  bool lsep = str.endswith(separator);
48  bool rsep = right_path.startswith(separator);
49 
50  if (lsep != rsep)
51  return str + right_path;
52  else if (lsep && rsep)
53  return str.substr(0, str.size()-2) + right_path;
54  else
55  return str + BC_FILE_SEPERATOR + right_path;
56 }
57 
58 }
59 
60 
61 }
62 
63 #endif
bool endswith(const bc::string &str) const
Definition: string.h:43
int mkdir(const std::string &name)
Definition: filesystem.h:31
bc::string make_path(const bc::string &path)
Definition: filesystem.h:40
bool directory_exists(const std::string &name)
Definition: filesystem.h:21
#define BC_FILE_SEPERATOR
Definition: filesystem.h:16
bool file_exists(const std::string &name)
Definition: filesystem.h:35
Inherits from std::string.
Definition: string.h:21
The Evaluator determines if an expression needs to be greedily optimized.
Definition: algorithms.h:22
bool startswith(const std::string &str) const
Definition: string.h:38