I'm logged in as an admin on my PC, but this shows up
here's my code:
string file = "C:\\Users\\owner\\Documents\\backup.sql";
using (MySqlConnection conn = new MySqlConnection(constring))
{
using (MySqlCommand cmd = new MySqlCommand())
{
using (MySqlBackup mb = new MySqlBackup(cmd))
{
try
{
cmd.Connection = conn;
conn.Open();
mb.ExportToFile(file);
conn.Close();
}catch(Exception ex){
MessageBox.Show(ex.Message);
}
}
}
}
PS: I already have a connection string at the very top of my code.
There is a possibility, that you are getting the error because the file doesn't exist. I could be wrong, but I looked into the source and it doesn't check whether the file already exists.