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?

link|improve this question
1  
You'll have to provide quite a bit more info. For example, exactly what does "it doesn't work" mean. Do you get an error, if so which one? That method throws 8 different messages depending on the problem... Also, the framework version might help. – Chris Lively Jul 31 '11 at 4:26
it doesn't work mean,my database file wasn't save new locations. – CSharpCrazy Jul 31 '11 at 4:29
Was an exception thrown? If so, which one? – Chris Lively Jul 31 '11 at 4:31
OK bro i get it – CSharpCrazy Jul 31 '11 at 4:45
feedback

2 Answers

Give full path. See examples here.

File.Copy(@"C:\...\MyAccDB.accdb", @"C:\...\MyAccDB.accdb");
link|improve this answer
Thanks i get it. – CSharpCrazy Jul 31 '11 at 4:46
@CSharpCrasy : Glad to help! Please select the answer if it solved your problem. – CharithJ Jul 31 '11 at 4:52
feedback

Just simple,

File.Copy("Source file Path","Destination file path)";

That's all.

Thank you

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.