X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bdfeadcac50e7b4b631a3f6e8c42d2db4e594639..cece1d88c00e2ae4398bf87073879187f5ca54c5:/src/common/dircmn.cpp?ds=sidebyside diff --git a/src/common/dircmn.cpp b/src/common/dircmn.cpp index 2fa41e06da..ca35534dcf 100644 --- a/src/common/dircmn.cpp +++ b/src/common/dircmn.cpp @@ -43,6 +43,29 @@ // implementation // ============================================================================ +// ---------------------------------------------------------------------------- +// wxDir::HasFiles() and HasSubDirs() +// ---------------------------------------------------------------------------- + +// dumb generic implementation + +bool wxDir::HasFiles(const wxString& spec) +{ + wxString s; + return GetFirst(&s, spec, wxDIR_FILES | wxDIR_HIDDEN); +} + +// we have a (much) faster version for Unix +#ifndef __UNIX_LIKE__ + +bool wxDir::HasSubDirs(const wxString& spec) +{ + wxString s; + return GetFirst(&s, spec, wxDIR_DIRS | wxDIR_HIDDEN); +} + +#endif // !Unix + // ---------------------------------------------------------------------------- // wxDir::Traverse() // ----------------------------------------------------------------------------