0

I have an application where it reads the xml data, makes some changes and saves it into a word document. When i run the app 1st time the base URI is "C:\Documents\Visual Studio 2010\Projects\WindowsFormsApplication1\WindowsFormsApplication1\bin\Debug". But when i run the second time without restarting the app the base URI changes to last saved location ans i get an error saying the xml file not found.Below is the part of code. Where am i gng wrong

 string xmlSource = string.Empty;

            if (string.IsNullOrEmpty(xmlSource))

                xmlSource = "Dictionary.xml";

                XmlDocument doc = new XmlDocument();
                doc.Load(xmlSource);
                FileStream usrFs = null;
            try
            {

                usrFs = new FileStream(xmlSource, FileMode.Open, FileAccess.Read,
                                 FileShare.ReadWrite);

            }

            catch (IOException ex)
            {
                MessageBox.Show(ex.Message);
            }
            try
            {

                doc.Load(usrFs);

            }
            catch (Exception ex)
            {

                MessageBox.Show(ex.Message);
            }

1 Answer 1

1

Use full path rather than relative path.

xmlSource = System.AppDomain.CurrentDomain.BaseDirectory + "\\Dictionary.xml";
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.