1

For Windows Phone 8.1 development we have this nice tool - Windows Phone Power Tools - which allows you to look into app's actual local storage content and get/put files from/to there: enter image description here

I wonder is there is anything like this for Windows 8.1 / Windows 10 universal apps development?

Or, may be, there is some simple way to get files from the Windows 8.1 app (apart from writing the code to read the file content and, say, "sharing it out" from there via email or something)?

I've also tried to look into c:\Program Files\WindowsApps\ folder, but have not found my development app's sub-folder over there.

4

1 回答 1

6

What you're looking for is in the C:\Users\YourUserName\AppData\Local\Packages\App.blablabla.YourAppsGuid.blablabla\LocalState and ...\RoamingState folder.

Tip #1: This is a hidden folder, so if you don't have "Show hidden folders and files" enabled, just enter %localappdata%\Packages to quickly get there.

于 2015-04-22T19:22:47.823 回答