From fe356e6de535d86fb3c670501de10c1152a7f835 Mon Sep 17 00:00:00 2001 From: Victor Domingos Date: Sat, 8 Sep 2018 22:38:09 +0100 Subject: [PATCH] bug fix on ios --- count_files/utils/file_handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/count_files/utils/file_handlers.py b/count_files/utils/file_handlers.py index 90f78f3..f4c4f23 100644 --- a/count_files/utils/file_handlers.py +++ b/count_files/utils/file_handlers.py @@ -192,7 +192,7 @@ def is_hidden_file_or_dir return True, even if it has visible final file/folder. return False elif platform_name.startswith('linux'): return bool('/.' in filepath) - elif platform_name.startswith('darwin'): + elif platform_name.startswith('darwin') or platform_name.startswith('ios'): return bool('/.' in filepath)