X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/353327844e319db755c2e7a07a4cf5b53cef35c4..008a56c968ed7e0694e32e93c2dbf95dde2ba5c8:/src/common/dircmn.cpp diff --git a/src/common/dircmn.cpp b/src/common/dircmn.cpp index c39290a58c..dc0b24bbc1 100644 --- a/src/common/dircmn.cpp +++ b/src/common/dircmn.cpp @@ -34,6 +34,7 @@ #include "wx/string.h" #include "wx/log.h" #include "wx/intl.h" + #include "wx/filefn.h" #endif //WX_PRECOMP #include "wx/dir.h" @@ -42,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 +#if (defined(__CYGWIN__) && defined(__WINDOWS__)) || !defined(__UNIX_LIKE__) || defined(__WXMAC__) + +bool wxDir::HasSubDirs(const wxString& spec) +{ + wxString s; + return GetFirst(&s, spec, wxDIR_DIRS | wxDIR_HIDDEN); +} + +#endif // !Unix + // ---------------------------------------------------------------------------- // wxDir::Traverse() // ----------------------------------------------------------------------------