]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dir.h
Make wxGCDC::GetGraphicsContext() const.
[wxWidgets.git] / include / wx / dir.h
index fa50bb25682eabaac950e390fab9392048517403..94c5d453c0a229fe99cbd5eb995f32a8cf86f56b 100644 (file)
@@ -14,6 +14,7 @@
 
 #include "wx/longlong.h"
 #include "wx/string.h"
+#include "wx/filefn.h"      // for wxS_DIR_DEFAULT
 
 class WXDLLIMPEXP_FWD_BASE wxArrayString;
 
@@ -83,8 +84,6 @@ class WXDLLIMPEXP_FWD_BASE wxDirData;
 class WXDLLIMPEXP_BASE wxDir
 {
 public:
-    // test for existence of a directory with the given name
-    static bool Exists(const wxString& dir);
 
     // ctors
     // -----
@@ -107,6 +106,7 @@ public:
     // get the full name of the directory (without '/' at the end)
     wxString GetName() const;
 
+
     // file enumeration routines
     // -------------------------
 
@@ -151,6 +151,20 @@ public:
     static wxULongLong GetTotalSize(const wxString &dir, wxArrayString *filesSkipped = NULL);
 #endif // wxUSE_LONGLONG
 
+
+    // static utilities for directory management
+    // (alias to wxFileName's functions for dirs)
+    // -----------------------------------------
+
+    // test for existence of a directory with the given name
+    static bool Exists(const wxString& dir);
+
+    static bool Make(const wxString &dir, int perm = wxS_DIR_DEFAULT,
+                     int flags = 0);
+
+    static bool Remove(const wxString &dir, int flags = 0);
+
+
 private:
     friend class wxDirData;