Untitled
unknown
plain_text
a year ago
241 B
6
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