
The following method allows you to specify a file to copy from
the application bundle onto the application’s Documents folder:
private void
CopyFileInBundleToDocumentsFolder(
String filename)
{
//---path to
Documents folder---
var
documentsFolderPath =
Environment.GetFolderPath(
Environment.SpecialFolder.MyDocuments);
//---destination
path for file in the Documents
// folder---
var
destinationPath =
Path.Combine(documentsFolderPath,
filename);
//---path of
source file---
var sourcePath
=
Path.Combine(NSBundle.MainBundle.BundlePath,
filename);
//---print for
verfications---
Console.WriteLine(destinationPath);
Console.WriteLine(sourcePath);
try {
//---copy
only if file does not exist---
if (!File.Exists(destinationPath))
{
File.Copy(sourcePath,
destinationPath);
} else {
Console.WriteLine("File
already exists");
}
} catch (Exception e) {
Console.WriteLine(e.Message);
}
}
You typically call this method when the application is first
launched:
public override bool FinishedLaunching (
UIApplication app, NSDictionary
options)
{
window = new
UIWindow
(UIScreen.MainScreen.Bounds);
viewController
= new
BundledResourcesViewController
();
window.RootViewController =
viewController;
window.MakeKeyAndVisible
();
//---copy
file in bundle to documents folder---
CopyFileInBundleToDocumentsFolder("MyDB.sql");
return true;
}
No comments:
Post a Comment