Added 'full' param to wxFileName::Mkdir to make all directories in a path,
not just the last one git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9583 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -166,9 +166,10 @@ public:
|
||||
// get a temp file name starting with thespecified prefix
|
||||
void AssignTempFileName( const wxString &prefix );
|
||||
|
||||
// directory creation and removal
|
||||
bool Mkdir( int perm = 0777 );
|
||||
static bool Mkdir( const wxString &dir, int perm = 0777 );
|
||||
// directory creation and removal.
|
||||
// if full is TRUE, will try to make each directory in the path.
|
||||
bool Mkdir( int perm = 0777, bool full = FALSE);
|
||||
static bool Mkdir( const wxString &dir, int perm = 0777, bool full = FALSE );
|
||||
|
||||
bool Rmdir();
|
||||
static bool Rmdir( const wxString &dir );
|
||||
|
Reference in New Issue
Block a user