Changes between Version 4 and Version 5 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/GetFilesInPathWithExtension


Ignore:
Timestamp:
03/12/25 08:01:46 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/File/GetFilesInPathWithExtension

    v4 v5  
    22Search for files in a directory having the specified extension
    33
    4 {{{
     4{{{#!c++
    55int GetFilesInPathWithExtension(const char* path, const char* ext, vector<string>& result);
    66}}}
     
    2020== Examples ==
    2121
    22 {{{
     22{{{#!c++
    2323vector<string> pdfList;
    2424int pdfFileCnt = GetFilesInPathWithExtension(appDataPath.c_str(), "PDF", pdfList);