diff --git a/FileTreeWindow/DirectoryNode.m b/FileTreeWindow/DirectoryNode.m index b16cf5e5f..5ee47ce52 100644 --- a/FileTreeWindow/DirectoryNode.m +++ b/FileTreeWindow/DirectoryNode.m @@ -25,7 +25,8 @@ for (NSString *s in contents) { - [fullPaths addObject:[[url path] stringByAppendingPathComponent: s]]; + if (![s hasPrefix:@"."]) + [fullPaths addObject:[[url path] stringByAppendingPathComponent: s]]; } [self processPaths: fullPaths];