TF++, Miscellaneous classes and modules in C++:
filestatus.h
Go to the documentation of this file.
1 
36 // include guard
37 #ifndef TF_FILESTATUS_H_VERSION
38 
39 #define TF_FILESTATUS_H_VERSION \
40  "TF_FILESTATUS_H V1.0 "
41 
42 #include<string>
43 
44 namespace tfxx {
45 
48  namespace file {
49 
53  bool creatable(const char* path);
54 
57  bool exists(const char* path);
58 
61  bool writable(const char* path);
62 
65  bool readable(const char* path);
66 
69  bool regular(const char* path);
70 
74  std::string uniquenew(const char* path);
75 
76  } // namespace file
77 
78 } // namespace tfxx
79 
80 #endif // TF_FILESTATUS_H_VERSION (includeguard)
81 
82 /* ----- END OF filestatus.h ----- */
bool writable(const char *path)
Definition: filestatus.cc:82
bool regular(const char *path)
Definition: filestatus.cc:103
bool creatable(const char *path)
Definition: filestatus.cc:56
std::string uniquenew(const char *path)
Definition: filestatus.cc:113
bool readable(const char *path)
Definition: filestatus.cc:92
bool exists(const char *path)
Definition: filestatus.cc:71
Namespace containing all code of library libtfxx.