Untitled
unknown
plain_text
2 years ago
241 B
9
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