mirror of
https://github.com/spl0k/supysonic.git
synced 2024-11-10 04:02:17 +00:00
Scanner: exposing scan_file
This commit is contained in:
parent
21f14a6dc1
commit
f2ca878301
@ -49,7 +49,7 @@ class Scanner:
|
|||||||
current = 0
|
current = 0
|
||||||
|
|
||||||
for path in files:
|
for path in files:
|
||||||
self.__scan_file(path)
|
self.scan_file(path)
|
||||||
current += 1
|
current += 1
|
||||||
if progress_callback:
|
if progress_callback:
|
||||||
progress_callback(current, total)
|
progress_callback(current, total)
|
||||||
@ -83,7 +83,7 @@ class Scanner:
|
|||||||
return True
|
return True
|
||||||
return os.path.splitext(path)[1][1:].lower() in self.__extensions
|
return os.path.splitext(path)[1][1:].lower() in self.__extensions
|
||||||
|
|
||||||
def __scan_file(self, path):
|
def scan_file(self, path):
|
||||||
tr = filter(lambda t: t.path == path, self.__tracks)
|
tr = filter(lambda t: t.path == path, self.__tracks)
|
||||||
if tr:
|
if tr:
|
||||||
tr = tr[0]
|
tr = tr[0]
|
||||||
|
Loading…
Reference in New Issue
Block a user