Replies: 3 comments
-
MSIX packaged desktop app is not really "sandboxed" it writes to its own virtual registry and application data folder. for UnPackaged app, you can find your app folder in %AppData% |
Beta Was this translation helpful? Give feedback.
-
I think using the UWP functionality would be better here. |
Beta Was this translation helpful? Give feedback.
-
The virtualized path from |
Beta Was this translation helpful? Give feedback.
-
We are using
Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData)
to create our databases since the beginning of our app development with UWP. After migrating to WinUI3 our databases are not visible any more. My investigations has shown ,that the real file path changed fromLocalState
toLocalCache
. Are there any ideas how we can avoid this or make our old databases from uwp available for the new WinUI migration?Beta Was this translation helpful? Give feedback.
All reactions