http://www.bigbold.com/snippets/posts/show/1465
Korakot wants to know what tables are there in each db file.
The first step is to list all such files.Don't forget .cdb files (as contact.cdb !)Code:# Finding all symbians database files import os def print_db(arg, dirname, names): for name in names: if name.endswith('.db') or name.endswith('.cdb'): print dirname + '\\' + name os.path.walk(('C:\\', print_db, None) os.path.walk(('D:\\', print_db, None) os.path.walk(('E:\\', print_db, None)
Don't forget disk d: and e: !
Have a nice day !

Reply With Quote


