Merge pull request #36071 from RandomShaper/imvu/ignore_hidden_find

Ignore hidden files and directories in find in files
This commit is contained in:
Rémi Verschelde
2020-02-10 11:05:54 +01:00
committed by GitHub

View File

@@ -235,9 +235,11 @@ void FindInFiles::_scan_dir(String path, PoolStringArray &out_folders) {
if (file == "")
break;
// Ignore special dirs and hidden dirs (such as .git and .import)
// Ignore special dirs (such as .git and .import)
if (file == "." || file == ".." || file.begins_with("."))
continue;
if (dir->current_is_hidden())
continue;
if (dir->current_is_dir())
out_folders.append(file);