fork download
  1. #include <string>
  2. #include <iostream>
  3. #include <vector>
  4. using namespace std;
  5.  
  6. vector<string> GetFiles(string path, string pattern, bool AllElements)
  7. {
  8. return vector<string>();
  9. }
  10.  
  11. int main() {
  12. bool AllElements = true;
  13. string path("C:\\FOLDER");
  14. string pattern("*.*");
  15. vector<string> v = GetFiles(path, pattern, AllElements);
  16. return 0;
  17. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
Standard output is empty