X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ffs%2Futils.cpp;h=9a9802524399e53c8b21e723764f939a6fd9f8c1;hp=b66b82dd70c90c1ed96b6f0cd13a27087ad4ebf5;hb=7264384ae4dc1adaf861750516030826a8c91645;hpb=e240e074ce15c17d644e378067c2941aefcd5611 diff --git a/source/fs/utils.cpp b/source/fs/utils.cpp index b66b82d..9a98025 100644 --- a/source/fs/utils.cpp +++ b/source/fs/utils.cpp @@ -1,4 +1,9 @@ #include +#ifdef WIN32 +#include +#else +#include +#endif #include #include #include "dir.h" @@ -126,14 +131,24 @@ Path realpath(const Path &path) void rename(const Path &from, const Path &to) { +#ifdef WIN32 + if(!MoveFileEx(from.c_str(), to.c_str(), MOVEFILE_REPLACE_EXISTING)) + throw system_error("MoveFileEx"); +#else if(::rename(from.str().c_str(), to.str().c_str())==-1) throw system_error("rename"); +#endif } void unlink(const Path &path) { +#ifdef WIN32 + if(!DeleteFile(path.c_str())) + throw system_error("DeleteFile"); +#else if(::unlink(path.str().c_str())==-1) throw system_error("unlink"); +#endif } Path relative(const Path &path, const Path &base) @@ -151,6 +166,16 @@ Path relative(const Path &path, const Path &base) return result; } +Path common_ancestor(const Path &path1, const Path &path2) +{ + Path::Iterator i = path1.begin(); + Path::Iterator j = path2.begin(); + Path result; + for(; (i!=path1.end() && j!=path2.end() && *i==*j); ++i, ++j) + result /= *i; + return result; +} + int descendant_depth(const Path &path, const Path &parent) { Path::Iterator i = path.begin();