mirror of
https://github.com/moparisthebest/minetest
synced 2024-11-15 05:45:13 -05:00
removed boost support from filesys.cpp; default to posix
This commit is contained in:
parent
c32bd982e3
commit
d38ac3aae3
@ -23,7 +23,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||||||
namespace fs
|
namespace fs
|
||||||
{
|
{
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32 // WINDOWS
|
||||||
|
|
||||||
#define _WIN32_WINNT 0x0501
|
#define _WIN32_WINNT 0x0501
|
||||||
#include <Windows.h>
|
#include <Windows.h>
|
||||||
@ -130,9 +130,7 @@ bool PathExists(std::string path)
|
|||||||
return (GetFileAttributes(path.c_str()) != INVALID_FILE_ATTRIBUTES);
|
return (GetFileAttributes(path.c_str()) != INVALID_FILE_ATTRIBUTES);
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
#else // POSIX
|
||||||
|
|
||||||
#ifdef linux
|
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
@ -186,39 +184,7 @@ bool PathExists(std::string path)
|
|||||||
return (stat(path.c_str(),&st) == 0);
|
return (stat(path.c_str(),&st) == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
#include "boost/filesystem/operations.hpp"
|
|
||||||
namespace bfsys = boost::filesystem;
|
|
||||||
|
|
||||||
std::vector<DirListNode> GetDirListing(std::string pathstring)
|
|
||||||
{
|
|
||||||
std::vector<DirListNode> listing;
|
|
||||||
|
|
||||||
bfsys::path path(pathstring);
|
|
||||||
|
|
||||||
if( !exists( path ) ) return listing;
|
|
||||||
|
|
||||||
bfsys::directory_iterator end_itr; // default construction yields past-the-end
|
|
||||||
for( bfsys::directory_iterator itr( path ); itr != end_itr; ++itr ){
|
|
||||||
DirListNode node;
|
|
||||||
node.name = itr->leaf();
|
|
||||||
node.dir = is_directory(*itr);
|
|
||||||
listing.push_back(node);
|
|
||||||
}
|
|
||||||
|
|
||||||
return listing;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool CreateDir(std::string path)
|
|
||||||
{
|
|
||||||
std::cout<<"CreateDir not implemented in boost"<<std::endl;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
} // namespace fs
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user