Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/GetFilesInPathWithExtension
- Timestamp:
- 03/12/25 08:01:46 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/GetFilesInPathWithExtension
v4 v5 2 2 Search for files in a directory having the specified extension 3 3 4 {{{ 4 {{{#!c++ 5 5 int GetFilesInPathWithExtension(const char* path, const char* ext, vector<string>& result); 6 6 }}} … … 20 20 == Examples == 21 21 22 {{{ 22 {{{#!c++ 23 23 vector<string> pdfList; 24 24 int pdfFileCnt = GetFilesInPathWithExtension(appDataPath.c_str(), "PDF", pdfList);