I want to copy existing Acccess Database file from my project into another location using SaveFileDialog in C#.
I wrote following code segments:
SaveFileDialog s = new SaveFileDialog();
s.Title = "SaveFile As...";
s.Filter = "Access Documents (*.accdb)|*.accdb|Others Documents (*.*)|*.*;";
string filenames = "MyAccDB.accdb";
s.FileName = filenames;
if (s.ShowDialog() != DialogResult.Cancel)
{
File.Copy(@"MyAccDB.accdb", s.FileName);
}
But it doesn't work and not saving.
How can I save access DB file into another location?