mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-06 21:00:22 +00:00
add missing method
This commit is contained in:
parent
345cfa60cc
commit
9e4289c453
@ -364,6 +364,18 @@ class TskDbDiff(object):
|
||||
# os.remove(backup_db_file)
|
||||
return guid_utils.obj_id_guids
|
||||
|
||||
@staticmethod
|
||||
def dump_output_db(db_file, dump_file, bb_dump_file, isMultiUser, pgSettings):
|
||||
"""Dumps the given database to text files for later comparison.
|
||||
|
||||
Args:
|
||||
db_file: a pathto_File, the database file to dump
|
||||
dump_file: a pathto_File, the location to dump the non-blackboard database items
|
||||
bb_dump_file: a pathto_File, the location to dump the blackboard database items
|
||||
"""
|
||||
id_obj_path_table = TskDbDiff._dump_output_db_nonbb(db_file, dump_file, isMultiUser, pgSettings)
|
||||
TskDbDiff._dump_output_db_bb(db_file, bb_dump_file, isMultiUser, pgSettings, id_obj_path_table)
|
||||
|
||||
@staticmethod
|
||||
def _get_tmp_file(base, ext):
|
||||
time = datetime.datetime.now().time().strftime("%H%M%f")
|
||||
|
Loading…
x
Reference in New Issue
Block a user