mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Fix ignoring hidden folders when scanning
This commit is contained in:
parent
f9e0de31b8
commit
4514a54744
3 changed files with 8 additions and 0 deletions
|
@ -5,6 +5,7 @@ import (
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/deluan/navidrome/consts"
|
"github.com/deluan/navidrome/consts"
|
||||||
|
@ -105,6 +106,9 @@ func isDirOrSymlinkToDir(baseDir string, dirInfo os.FileInfo) (bool, error) {
|
||||||
// isDirIgnored returns true if the directory represented by dirInfo contains an
|
// isDirIgnored returns true if the directory represented by dirInfo contains an
|
||||||
// `ignore` file (named after consts.SkipScanFile)
|
// `ignore` file (named after consts.SkipScanFile)
|
||||||
func isDirIgnored(baseDir string, dirInfo os.FileInfo) bool {
|
func isDirIgnored(baseDir string, dirInfo os.FileInfo) bool {
|
||||||
|
if strings.HasPrefix(dirInfo.Name(), ".") {
|
||||||
|
return true
|
||||||
|
}
|
||||||
_, err := os.Stat(filepath.Join(baseDir, dirInfo.Name(), consts.SkipScanFile))
|
_, err := os.Stat(filepath.Join(baseDir, dirInfo.Name(), consts.SkipScanFile))
|
||||||
return err == nil
|
return err == nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,5 +38,9 @@ var _ = Describe("load_tree", func() {
|
||||||
dir, _ := os.Stat(filepath.Join(baseDir, "ignored_folder"))
|
dir, _ := os.Stat(filepath.Join(baseDir, "ignored_folder"))
|
||||||
Expect(isDirIgnored(baseDir, dir)).To(BeTrue())
|
Expect(isDirIgnored(baseDir, dir)).To(BeTrue())
|
||||||
})
|
})
|
||||||
|
It("returns true when folder name starts with a `.`", func() {
|
||||||
|
dir, _ := os.Stat(filepath.Join(baseDir, ".hidden_folder"))
|
||||||
|
Expect(isDirIgnored(baseDir, dir)).To(BeTrue())
|
||||||
|
})
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
0
tests/fixtures/.hidden_folder/.gitkeep
vendored
Normal file
0
tests/fixtures/.hidden_folder/.gitkeep
vendored
Normal file
Loading…
Add table
Add a link
Reference in a new issue