3
0

recordings.py 247 B

1234567891011
  1. # find files
  2. def myCar_rec_files(inpath):
  3. from pathlib import Path
  4. # we need the path to find the files with a .db at the end
  5. path=Path(inpath)
  6. return list(path.glob('*.db'))
  7. # find trips
  8. #def myCar_rec_trips(filelist):