Skip to content

Instantly share code, notes, and snippets.

@wtuts
Created January 9, 2016 18:56
Show Gist options
  • Save wtuts/9d0c832c0bea6c71b956 to your computer and use it in GitHub Desktop.
Save wtuts/9d0c832c0bea6c71b956 to your computer and use it in GitHub Desktop.
public static async Task<bool> DeleteDatabase()
{
try
{
var storageFile = await StorageFile.GetFileFromPathAsync(DbPath);
await storageFile.DeleteAsync(StorageDeleteOption.PermanentDelete);
return true;
}
catch (Exception ex)
{
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment