I am making a level editor for my game, and most of it is working except... When I try to save my file (XML) the file doesn't get created, and in the output box I get:

A first chance exception of type 'System.NullReferenceException'

The funny thing is that it only happens if the file doesn't exist, but it works correctly if I overwrite another file.

here is the code I'm using:

using (StreamWriter stream = new StreamWriter(filePath))
{
    stream.Write(data);
    stream.Close();
}

data is a string (this is not the problem because it works when I overwrite the file)

link|improve this question

58% accept rate
Which line gives the NullReferenceException? – ChrisF Jan 7 at 22:57
It doesn't say, I think the StreamWriter must catch the exception and Debug.WriteLine the message – annonymously Jan 7 at 22:58
The only thing I can think of is that the program doesn't have create permissions to the directory. Try removing the using (for debug purposes only) and see if you get a more meaningful exception. – ChrisF Jan 7 at 22:59
@ChrisF nope, the exception is still not appearing, it's just being written to the output box – annonymously Jan 7 at 23:01
@luisperezphd yes, they work if the file exists – annonymously Jan 7 at 23:01
show 3 more comments
feedback

3 Answers

You're missing a constructor which takes a boolean that can aid in creating the file:

using (StreamWriter stream = new StreamWriter(filePath, false)) {
    stream.Write(data);
    stream.Close();
}

The logic is actually is little more complex than that, however:

public StreamWriter( string path, bool append )

Determines whether data is to be appended to the file. If the file exists and append is false, the file is overwritten. If the file exists and append is true, the data is appended to the file. Otherwise, a new file is created.

link|improve this answer
Well, that makes the stream append to the file, I want to replace the file – annonymously Jan 7 at 23:06
If the file exists I want to overwrite it, not append to it – annonymously Jan 7 at 23:07
I don't think this is the correct overload. The problem is not that the file is getting overwritten, but that it's not getting created in the first place. – ChrisF Jan 7 at 23:07
1  
@ChrisF I've taken a look and with append being false this constructor will always create the file if it doesn't exist. As per this: Initializes a new instance of the StreamWriter class for the specified file on the specified path, using the default encoding and buffer size. If the file exists, it can be either overwritten or appended to. If the file does not exist, this constructor creates a new file. – Mr. Disappointment Jan 7 at 23:10
1  
When using the using keyword, you don't need to call sw.Close(), it's taken care of automatically. (which is the whole point of using using in the first place) – aevitas Jan 8 at 0:33
show 2 more comments
feedback

Have you tried not using File.Create()? like so:

using (StreamWriter stream = new StreamWriter(filePath)) {
    stream.Write(data);
    stream.Close();
}
link|improve this answer
Yes, that was the first way that worked and I copy pasted my backup sorry ;) – annonymously Jan 7 at 22:59
When I run this code it creates a file if it doesn't exist. And overwrites it does exist - is that not the behavior you wanted? – luisperezphd Jan 8 at 1:25
Ok, I see, this is the way it should behave, but it's not working on your specific computer. Can you get a stack trace? Have you tried to see if you have the latest version of the .NET framework? Maybe somehow you have write but not create permission to the folder? – luisperezphd Jan 8 at 1:27
I do have the latest .net framework, and I'm pretty sure I have create permissions to the folder. As for the stack trace, I'm sorry but I can't seem to debug after the error, it just resumes the program – annonymously Jan 8 at 6:35
You can try running the free filemon application to see if it gives you any more details. There is also a setting in visual studio that will freeze the application when any exception is thrown even handled ones. Finally you can add code to output the stack trace. – luisperezphd Jan 8 at 8:25
feedback

Why don't you just go around it the easy way, and check for file existence prior to writing to it:

public void Foo(string path, string data)
{
    if (!File.Exists(path))
        File.Create(path);

        using (var sw = new StreamWriter(path, false))
        {
            // Work your magic.
            sw.Write();
        }
}

I'd really not make it any more complicated than that personally. Also, don't close the StreamWriter, the using statement disposes of it after it's served its purpose.

link|improve this answer
The check is redundant though, so inherently makes things more complex. – Mr. Disappointment Jan 8 at 10:07
Personally I don't think it does. Even though it may be redundant, it makes it easier to read, understand, and debug. – aevitas Jan 8 at 11:58
feedback

Your Answer

 
or
required, but never shown

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