From uwp app, I'm trying to test DB connection from local folder other than default application folder, it throws "unable to open database" error.
SqliteConnection cnn = new SqliteConnection($"Filename={dbPath}");
cnn.Open();
I used dbPath like: "C:\Users\good\MyApp\Data\testdb.db".
App already has brows file system access.
I just want to know if it's prevented totally or I made mistake although it supports it.
I couldn't find any info related to this absolute path. All examples and explanation from MS docs are related to the default app folder.
Thank you,