make wxFileName::{Mk,Rm}dir() const (closes #10868)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61002 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -316,11 +316,11 @@ public:
|
||||
#endif // wxUSE_FFILE
|
||||
|
||||
// directory creation and removal.
|
||||
bool Mkdir(int perm = wxS_DIR_DEFAULT, int flags = 0);
|
||||
bool Mkdir(int perm = wxS_DIR_DEFAULT, int flags = 0) const;
|
||||
static bool Mkdir(const wxString &dir, int perm = wxS_DIR_DEFAULT,
|
||||
int flags = 0);
|
||||
|
||||
bool Rmdir(int flags = 0);
|
||||
bool Rmdir(int flags = 0) const;
|
||||
static bool Rmdir(const wxString &dir, int flags = 0);
|
||||
|
||||
// operations on the path
|
||||
|
Reference in New Issue
Block a user