Ignore Recycle Bins in Windows. Fix #1074

This commit is contained in:
Deluan 2023-03-09 22:07:53 -05:00
parent 47f15ccbc3
commit 339a6239fd
3 changed files with 46 additions and 2 deletions

View file

@ -79,6 +79,10 @@ var _ = Describe("walk_dir_tree", func() {
dirEntry, _ := getDirEntry(baseDir, "...unhidden_folder")
Expect(isDirIgnored(baseDir, dirEntry)).To(BeFalse())
})
It("returns false when folder name is $Recycle.Bin", func() {
dirEntry, _ := getDirEntry(baseDir, "$Recycle.Bin")
Expect(isDirIgnored(baseDir, dirEntry)).To(BeFalse())
})
})
Describe("fullReadDir", func() {