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 568979
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T13:14:45+00:00 2026-05-13T13:14:45+00:00

This works: using (StreamWriter stw = new StreamWriter(Server.MapPath(\\xml\\file.xml))) { stw.Write(xmlEncStr); } This creates an

  • 0

This works:

using (StreamWriter stw = new StreamWriter(Server.MapPath("\\xml\\file.xml")))
{
    stw.Write(xmlEncStr);
}

This creates an empty file:

using (FileStream file = new FileStream(Server.MapPath("\\xml\\file.xml"), FileMode.CreateNew))
{
    using (StreamWriter sw = new StreamWriter(file))
    {
        sw.Write(xmlEncStr);
    }
}

I tried playing around with the FileStream constructor and tried flushing and I still get a zero byte file. The string I am writing is a simple base64 encoded ascii string with no special characters.

I know I can use the first example, but why won’t the second work?

Update

This wasn’t a Filestream/StreamWriter problem – it was a variable naming problem. I corrected the code above, so now both versions work. I originally had:

StreamWriter strw = new StreamWriter(file)
  • 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-05-13T13:14:45+00:00Added an answer on May 13, 2026 at 1:14 pm

    You could shorten your code a bit:

    File.WriteAllText(Server.MapPath("\\xml\\file.xml"), xmlEncStr);
    

    Also the MapPath method accepts a relative or virtual path and converts it to the corresponding physical path on the server. \\xml\\file.xml is non of the above. It probably should be: ~/xml/file.xml.

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

Sidebar

Related Questions

I am using StreamWriter to write to a file. When I use a text
Am creating an xml file using xmlwriter,i thought it works fine but when i
I'm using this code for download files from a server via FTP. It works
I am using this text editor for my windows forms application This works great
This works: #include <iostream> using namespace std; but this fails: #include <stdio> When is
When using the PHP Sphinx client this works: SphinxClient::query ('*', 'index1'); But when I
I'm using WCF through Spring.net WCF integration link text This works relatively fine, however
I'm using the Multimedia timer in Delphi and this works great for quite accurate
I'm using the CurrentUICulture for Localization. This works pretty well until the UI Culture
I am using the jquery datepicker with the timeplugin. This works on every browser

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.