Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8791535
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T22:51:23+00:00 2026-06-13T22:51:23+00:00

I am trying to create an XML file for storing some info from a

  • 0

I am trying to create an XML file for storing some info from a class. I gave the path as a const set to Info.xml. but the XMLTextWriter is not saving the XML file to bin(debug/release) folder, rather it is saving it to MyDocuments folder. When i tried to check if the file exists with File.Exists(path), its returning false. Could somebody please guide me here.

My code looks as below…

string BookName = "Book1" 
string AuthorName= "Author1" 
XmlTextWriter writer = new XmlTextWriter("Info.xml", Encoding.UTF8);    writer.WriteStartDocument(); 
writer.WriteStartElement("Title"); 
writer.WriteString(BookName); 
writer.WriteStartElement("Author"); 
writer.WriteString(AuthorName); 
writer.WriteEndElement(); 
writer.WriteEndElement(); 
writer.WriteEndDocument(); 
writer.Close();
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T22:51:24+00:00Added an answer on June 13, 2026 at 10:51 pm

    Try this

        public void SerializeToXML(YourClass yourObj)
        {
            if (!File.Exists("C:\\Info.xml"))
                File.Create("C:\\Info.xml");
            XmlSerializer serializer = new XmlSerializer(typeof(YourClass));
            System.IO.TextWriter textWriter = new StreamWriter("C:\\Info.xml");
            serializer.Serialize(textWriter, yourObj);
            textWriter.Close();
        }
    

    This would save “Info.xml” to your C:, neither in debug nor in release. (It would also create file if doesn’t already exists).

    Check out this link as well, it might help.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Cross-post http://perlmonks.org/index.pl?node_id=979710 I'm trying to create a text file from some XML using Perl
I want to create from XML some objects, but when I'm trying I get
I am trying to create an XML file, but the XML file needs to
I am trying to create java objects from xml file. I am using jaxb(unmarshalling)
I'm trying to display some elements from my XML file to my form which
I am trying to create an XML file to conform to someones XSD this
I am trying to dynamically create an XML file using php like this: header
I am trying to use 'git log --pretty=tformat' to create xml file log. However
I'm trying to create an XML sitemap using CakePHP, from a table which has
I'm trying to parse some XML (html) I downloaded using WebRequest.Create() and then read

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.