Reputation: 2521
I am developing windows app and i have side-loaded the app. For some debugging purpose i need to inspect the installation directory.
I looked for it in below directory but can't see it there.
C:\Program Files\WindowsApps
Where are the windows 10 apps installed on drive?
Upvotes: 0
Views: 1197
Reputation: 1301
You can find your application data in the following path ..
C:\Users\Default\AppData\Local\Packages\(Your packageName)
The package name is usually somewhat like this "Microsoft.Windows.Cortana_cw5n1h2txyewy".. you will need to identify your package accordingly..
Upvotes: 1