| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/jayDevCodes/cpp-multithreaded-file-search/main/main.cpp | [Back] [Original] |
#include
#include
#include
#include
#include
#include
#include
#include "search.h"
using namespace std;
int main() {
string path;
cout path;
vector files;
for (const auto& entry : filesystem::directory_iterator(path)) {
files.push_back(entry.path());
};
string word;
cout > word;
regex pattern;
try{
pattern = regex(word);
} catch (const regex_error& e) {
cerr
| Web Proxy Viewer | New URL | Original Page |