Untitled
Anonymous
plain_text
11/21/2023 11:14 AM
324 B
19
Indexable
bool foundFile() {
for (const auto& entry : fs::recursive_directory_iterator("C:\\")) {
if (entry.is_regular_file() && entry.path().filename().string() == "namert_.json") {
return true;
}
}
return false;
}Editor is loading...
Leave a Comment