Quote:
Originally Posted by mtngr1
Okay, found it! When I was doing a search, I was searching under user, and I must I've only installed it under my Documents and Settings. It's found in C:\Documents and Settings\USER\Application Data\Barnes & Noble\BNDesktopReader\ClientAPI
|
Your "ClientAPI.db" doesn't use underscores, so you should replace
Code:
dbpath = glob.glob(os.path.join(bndir, 'ClientAPI_*.db'))
with
Code:
dbpath = glob.glob(os.path.join(bndir, 'ClientAPI*.db'))
(remove underscore) as mentioned above.