12 #if ((XTD_OS_CYGWIN | XTD_OS_MSYS | XTD_OS_LINUX) & XTD_OS)
20 #if (XTD_HAS_FILESYSTEM)
22 #elif (XTD_HAS_EXP_FILESYSTEM)
23 #include <experimental/filesystem>
35 #if (XTD_HAS_EXP_FILESYSTEM)
39 struct path : std::experimental::filesystem::path{
40 using _super_t = std::experimental::filesystem::path;
41 template <
typename ... _ArgTs> path(_ArgTs&&...oArgs) : _super_t(std::forward<_ArgTs>(oArgs)...){}
43 template <
typename _Ty>
inline path operator+(
const _Ty& src)
const{
49 path filename()
const{
return path(_super_t::filename()); }
53 static inline bool remove(
const path& src){
return std::experimental::filesystem::remove(src); }
55 static inline path temp_directory_path(){
return path(std::experimental::filesystem::temp_directory_path()); }
56 #if ((XTD_OS_WINDOWS | XTD_OS_MINGW) & XTD_OS)
57 static inline path home_directory_path(){
60 RAII(CoTaskMemFree(sTemp));
64 static inline path home_directory_path() {
return path(getenv(
"HOME")); }
69 #elif (XTD_HAS_FILESYSTEM)
72 using namespace std::filesystem;
86 template <
typename ... _ArgTs>
path_base(_ArgTs&&...oArgs) :
xtd::string(std::forward<_ArgTs>(oArgs)...){}
90 #if ((XTD_OS_MINGW|XTD_OS_WINDOWS) & XTD_OS)
91 static constexpr value_type preferred_separator =
'\\';
92 static constexpr value_type non_preferred_separator =
'/';
94 static constexpr value_type preferred_separator =
'/';
95 static constexpr value_type non_preferred_separator =
'\\';
98 template <
typename ... _ArgTs>
path(_ArgTs&&...oArgs) :
path_base(std::forward<_ArgTs>(oArgs)...){}
101 template <
typename _RHST>
102 path& operator /= (
const _RHST& rhs){
107 template <
typename _Ty>
inline path operator+(
const _Ty& src)
const{
113 path& remove_filename(){
114 if (preferred_separator ==
string().back()){
118 for (; iEnd > begin() && preferred_separator != *iEnd && non_preferred_separator != *iEnd; --iEnd);
120 *
this = substr(0, iEnd-begin());
125 path& replace_filename(
const path& newval){
131 path filename()
const {
132 auto iEndSep =
string().find_last_of(preferred_separator);
133 return string().substr(1+iEndSep);
136 path& make_preferred(){
137 for (
auto & oCh : *
this){
138 if (oCh == non_preferred_separator){
139 oCh = preferred_separator;
145 path& append(
const path& rhs){
146 if (preferred_separator == back() || non_preferred_separator==back()) pop_back();
147 if (preferred_separator != rhs.string().front() && non_preferred_separator != rhs.string().front()) push_back(preferred_separator);
148 _super_t::append(rhs.string());
152 path& operator+=(
const path& rhs){
return append(rhs); }
157 #if ((XTD_OS_WINDOWS | XTD_OS_MINGW) & XTD_OS)
158 inline path temp_directory_path() {
165 static inline size_t file_size(
const path& oPath){
167 if (0==::stat(oPath.string().c_str(), &oStat)){
168 return oStat.st_size;
173 static inline bool exists(
const path& oPath){
174 FILE * pFile = fopen(oPath.string().c_str(),
"r");
175 if (pFile) fclose(pFile);
176 return (pFile ?
true :
false);
179 static inline path home_directory_path(){
return path(getenv(
"HOME")); }
182 inline path temp_directory_path(){
183 const char * cTempEnv = getenv(
"TMPDIR");
184 if (!cTempEnv || 0==strlen(cTempEnv)) cTempEnv = getenv(
"TEMP");
185 #if defined(P_tmpdir)
186 if (!cTempEnv || 0==strlen(cTempEnv)) cTempEnv = P_tmpdir;
188 if (!cTempEnv || 0==strlen(cTempEnv)) cTempEnv = _PATH_TMP;
189 return path(cTempEnv);
194 inline bool remove(
const path& oPath){
195 return 0==::remove(oPath.string().c_str());
204 namespace filesystem{
208 template <
typename _ValueT,
typename _Ch2,
size_t _Dims>
struct path_adder<_ValueT, const _Ch2(&)[_Dims]>{
209 inline static path add(
const path& dest,
const _Ch2(&src)[_Dims]){
216 template <
typename _ValueT,
typename _Ch2>
struct path_adder<_ValueT, const _Ch2*>{
217 inline static path add(
const path& dest,
const _Ch2* src){
225 inline static path add(
const path& dest,
const path& src){
specializations of std::basic_string for advanced and common string handling
host, target and build configurations and settings Various components are purpose built for specific ...
#define throw_if(_test, _expression)
Simplifies use of exception::_throw_if.
generic and special purpose exceptions
static xstring format()
Type safe formatting Appends each item in the parameter list together performing type-safe verificati...