]> git.tdb.fi Git - libs/core.git/blobdiff - source/fs/dir.cpp
Fix name of the rmpath function
[libs/core.git] / source / fs / dir.cpp
index c53c156fec68b6e2df51c2afdb09396281ae92bd..2575beb76580de0578c51f9da5aa38041e77aabd 100644 (file)
@@ -4,6 +4,8 @@
 #include <sys/stat.h>
 #ifdef WIN32
 #include <shlobj.h>
+#else
+#include <unistd.h>
 #endif
 #include <msp/core/systemerror.h>
 #include <msp/strings/regex.h>
@@ -85,16 +87,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);
        }
@@ -106,15 +104,14 @@ void rmdir(const Path &path)
                throw system_error("rmdir");
 }
 
-void rmdirs(const Path &path)
+void rmpath(const Path &path)
 {
        list<string> files = list_files(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))
-                       rmdirs(p);
+               if(is_dir(p))
+                       rmpath(p);
                else
                        unlink(p);
        }