Bug fixes + multi threading

This commit is contained in:
simon987
2019-03-10 20:15:53 -04:00
parent 36b9ed6cb7
commit 746ad25a4e
9 changed files with 157 additions and 50 deletions

View File

@@ -143,7 +143,7 @@ class GenericFileParser(FileParser):
name, extension = os.path.splitext(name)
info["size"] = file_stat.st_size
info["path"] = path[self.root_dir_len:]
info["path"] = os.path.relpath(path, self.root_dir)
info["name"] = name
info["extension"] = extension[1:]
info["mtime"] = file_stat.st_mtime