added verbosity to imagelist
This commit is contained in:
@@ -88,9 +88,11 @@ def add_recurse(options):
|
||||
conn.text_factory=str
|
||||
db=conn.cursor()
|
||||
for path,dirs,files in os.walk(options.startpath,followlinks=options.symlinks):
|
||||
print('Checking '+path)
|
||||
dirs=clean_dirs(dirs)
|
||||
if not options.symlinks:
|
||||
files=clean_syms(files)
|
||||
files.sort()
|
||||
for file in files:
|
||||
if IMGMATCH.match(file):
|
||||
filename=os.path.abspath(os.path.join(path,file))
|
||||
|
||||
Reference in New Issue
Block a user