JonasCz / save-for-offline

Android app for saving webpages for offline reading.
GNU General Public License v2.0
139 stars 45 forks source link

Q: current method to *export* *list* of saved URLs? #61

Open jwmh opened 4 years ago

jwmh commented 4 years ago

Hi, I'm sorry to bother you w this ask -- for info only -- (not a coding ask; that seems unrealistic).

Note: Not seeking to export the files/folders -- that's easy & clearly documented.

Instead, Just a list of the original URLs.

Doesnt need to be neat, tidy, nor clean.

I can see original URLs from /within/ the app if i peruse each entry, manually ( via "details of saved page" ) but i cannot via my (NOT-rooted) filesystem via the directory/folder they're saved in. . (Only the titles of the pages, and the files/folders, not the original url's.) .

Do you have any thoughts on how I could go about this? In any current -- existing -- released APK app version.

.(My device is /not/ rooted.)

Apologies again, And:

Hope you are doing well enough with everything in personal, world, work, community, -j

JonasCz commented 4 years ago

IIRC the app uses an SQLite database which is stored in the app's private storage. You can try one of these methods here to get it out: https://stackoverflow.com/questions/13006315/how-to-access-data-data-folder-in-android-device

Then you can open the sqlite file in a tool like sqlite browser.