Enos

Enos

  • NA
  • 140
  • 26.2k

How to save resource file to a drive.

Feb 9 2015 6:30 AM
Hi,
 
Am trying to save resource file to any directory but it is throwing an error. It says, Verify that the correct file name was given.
 
here is my codding,
 
string PathSelection = "";
SaveFileDialog saveFileDialog1 = new SaveFileDialog();
saveFileDialog1.Title = "Save Resource Files";
saveFileDialog1.Filter = "Save Resource Files (*.resx)|*.resx";
saveFileDialog1.FilterIndex = 1;
saveFileDialog1.RestoreDirectory = true;
if (saveFileDialog1.ShowDialog() == DialogResult.OK) //it breaks on this line
{
  string path = saveFileDialog1.FileName;
  //oDataSet.WriteXml(path);
}

Answers (2)