Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find files saved in ApplicationData.Current.LocalFolder while developing a Windows Phone 8.1 app?

To my understanding, WinRT apps store their application data in

C:\Users\{user}\AppData\Local\Packages

My Windows Phone 8.1 application seems to have its own folder there as well, with an odd name like

App.aba911777.a60e8.a46c0.aa90d.a5038d92d276e_8wekyb3d8bbwe

However, when I browse the directory, I cannot find any of the files I've saved to ApplicationData.Current.LocalFolder. They are definitely there, because if I re-run my app in the emulator (which hasn't been closed at all), can find the cached files. Presumably these files are saved somewhere on my actual hard drive; where would they be?

(LocalFolder.Path gives me C:\Data\Users\DefApps\APPDATA\Local\Packages\2cdc8aaf-b7fe-4bcb-992a-18ad6f140771_b83k3kj2dpxdw\LocalState but I'm not sure how to find that on my hard drive)

like image 498
Jedidja Avatar asked Jun 07 '14 08:06

Jedidja


2 Answers

To transfer/access files on Windows Phone Emulator (also works with device) you can use:

  • Isolated Storage Explorer tool - here is a good link how to do it, and also one useful here.
  • a very nice tool is Isolated Storage Spy - which now supports also WP8.1
  • Windows Phone Power Tools from here - you will have to check if that already works with WP8.1.
like image 88
Romasz Avatar answered Oct 17 '22 07:10

Romasz


Search your SQLite db file in "C:\Users\\AppData\Local\Packages\".

like image 23
Rahamath Avatar answered Oct 17 '22 08:10

Rahamath