Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
───▄▄██▌█ beep beep
▄▄▄▌▐██▌█ gay porn delivery
███████▌█▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▌
▀(@)▀▀▀▀▀▀▀(@)(@)▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀(@)▀
if (_m_stop_all) [[unlikely]] return; // this should make all threads return
_m_count++;
if (entry.is_directory()) {
if (ctx->validation(entry)) [[unlikely]] {
// Found, stop this thread and all other threads
ctx->results.push_back(entry.path());
if(ctx->search_one) _m_stop_all = true;
return;
} else { [[likely]]
try {
for (auto& subentry : fs::directory_iterator(entry)) { // start a normal recursive search
try {
traverse(subentry, ctx);
}
catch (...) {
// access denied: skip this folder
}
}
}
catch (...) {
// access denied: skip this folder
}
}
}
}