virtual wxDirTraverseResult OnDir(const wxString& dirname) = 0;
// called for each directory which we couldn't open during our traversal
- // of the directory tyree
+ // of the directory tree
//
// this method can also return either wxDIR_STOP, wxDIR_IGNORE or
// wxDIR_CONTINUE but the latter is treated specially: it means to retry
// opens the directory for enumeration, use IsOpened() to test success
wxDir(const wxString& dir);
- // dtor cleans up the associated ressources
+ // dtor cleans up the associated resources
~wxDir();
// open the directory for enumerating
bool GetNext(wxString *filename) const;
// return true if this directory has any files in it
- bool HasFiles(const wxString& spec = wxEmptyString);
+ bool HasFiles(const wxString& spec = wxEmptyString) const;
// return true if this directory has any subdirectories
- bool HasSubDirs(const wxString& spec = wxEmptyString);
+ bool HasSubDirs(const wxString& spec = wxEmptyString) const;
// enumerate all files in this directory and its subdirectories
//