iphone-sms-backup
iphone-sms-backup copied to clipboard
Windows DB Path
Newbie here, hoping you can point me in the right direction. I know where the DB file is but am unsure how to follow your suggestion of "pass the db name with --input". I don't know python but I do know basic sql and come from an IT background. Is it a command or do I edit the python file? Any direction would be greatly appreciated.
FYI for anyone else reading, the file is %UserProfile%\AppData\Roaming\Apple Computer\MobileSync\Backup<some long folder name>\3d and the file name is 3d0d7e5fb2ce288813306e4d4636395e047a3d28
First of all, the file path name must be passed to Python using forward slash (/), not back slash (), Second of all, if there are blanks in the file path name (as between 'Apple' and 'Computer', the parameter passed to Python must be enclosed in quotes ("). Third of all, variables such as '%UserProfile%' must be resolved before passing the file path name to Python.