TruxtonFileIO newusb

From truxwiki.com
Jump to navigation Jump to search

This creates a new USB Device record from a file in Truxton. It automatically associates the parent file and media identifiers used in the USBDevice table.

Syntax

object newusb();

Return value

A USB Device object

Sample

import truxton

from datetime import datetime
from calendar import timegm

EPOCH_AS_FILETIME = 116444736000000000
HUNDREDS_OF_NANOSECONDS = 10000000

def date_to_filetime(dt):
  return EPOCH_AS_FILETIME + (timegm(dt.timetuple()) * HUNDREDS_OF_NANOSECONDS)

def main():
  t = truxton.create()
  file = t.getfileid("5ec2a123-74d6-5da7-0653-4e6800000000")

  usb = file.newusb()

  usb.vendorid = 4100
  usb.productid = 25084
  usb.revision = 2
  usb.offset = 8193
  usb.when = date_to_filetime(datetime.utcnow())

  if usb.save() is True:
    print( "New USB saved as " + usb.id )

if __name__ == "__main__":
  sys.exit(main())