This commit is contained in:
jxxghp
2024-11-16 10:55:17 +08:00
parent 665da9dad3
commit fc69d7e6c1
3 changed files with 9 additions and 3 deletions

View File

@@ -275,6 +275,10 @@ class SystemUtils:
# 遍历目录
for path in directory.iterdir():
if path.is_dir():
if not SystemUtils.is_windows() and path.name.startswith("."):
continue
if path.name == "@eaDir":
continue
dirs.append(path)
return dirs