]> git.tdb.fi Git - libs/core.git/blobdiff - source/fs/dir.cpp
Rewrite the stat functions to expose a platform-independent interface
[libs/core.git] / source / fs / dir.cpp
index c53c156fec68b6e2df51c2afdb09396281ae92bd..75ad8d5ecd39e0144eb7cd2f0be4ee83ab0604e8 100644 (file)
@@ -85,16 +85,12 @@ void mkpath(const Path &path, int mode)
                if(p.size()==1 && p.is_absolute())
                        continue;
 #endif
-               struct stat st;
-               int err = stat(p, st);
-               if(err==0)
+               if(exists(p))
                {
-                       if(!S_ISDIR(st.st_mode))
+                       if(!is_dir(p))
                                throw not_a_directory(p);
                        continue;
                }
-               else if(errno!=ENOENT)
-                       throw system_error("mkpath:stat");
                else
                        mkdir(p, mode);
        }
@@ -112,8 +108,7 @@ void rmdirs(const Path &path)
        for(list<string>::iterator i=files.begin(); i!=files.end(); ++i)
        {
                Path p = path / *i;
-               struct stat st = stat(p.str().c_str());
-               if(S_ISDIR(st.st_mode))
+               if(is_dir(p))
                        rmdirs(p);
                else
                        unlink(p);