mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Ignore Recycle Bins in Windows. Fix #1074
This commit is contained in:
parent
47f15ccbc3
commit
339a6239fd
3 changed files with 46 additions and 2 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue