我在“ms-appx:///Assets/mydbfile.db”上有一个数据库。我想在应用程序第一次启动时将其复制到本地应用程序文件夹。数据库包含大量数据。
我尝试使用此代码。但它给了我一个例外。
StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(
new Uri("ms-appx:///Assets/mydbfile.db"));
await file.CopyAsync(ApplicationData.Current.LocalFolder, "mydbfile.db");
这是我的Db文件