Possible Duplicate:
The file is being used by another process, I must close it? How?

I'm not sure why is that but I cannot write some data into text file. I am doing like so:

    private void CreateLastOpenFile()
    {
        if (!Directory.Exists(directory))
        {
            Directory.CreateDirectory(directory);
        }

        if (!File.Exists(file))
        {
            FileStream newFile = File.Create(file);
            newFile.Close();
        }

        using (StreamWriter lastOpenedFile = new StreamWriter(file))
        {
            lastOpenedFile.WriteLine(filePath);
        }
    }

Am I doing this correctly?Should I be checking if directory exists? If file exists? What's the proper way? I was using examples from MSDN but I'm not sure how to do this.

link|improve this question

confirm that you're using file/filePath as expected. It seems like you've got them backwards.. – AlanFoster Jan 2 at 9:28
5  
look at the answers in thread you already started - stackoverflow.com/questions/8698879/… – evilone Jan 2 at 9:28
feedback

closed as exact duplicate by evilone, Frédéric Hamidi, Tim Medora, TJHeuvel, Kyle Sevenoaks Jan 3 at 6:37

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 1 down vote accepted

I'd rather do:

String p = Path.GetDirectoryName(fileName);
if (!Directory.Exists(p))
{
    Directory.CreateDirectory(p);
}

FileStream stream = new FileStream(fileName, FileMode.OpenOrCreate, FileAccess.Write);
using (StreamWriter writer = new StreamWriter(stream))
{
    ...
    writer.Flush();
}

This creates a new file if it doesn't exist.

using automatically calls Dispose on the writer, which in turn calls Close, which closes both writer and the underlying stream.

link|improve this answer
Would it also create the directory needed? – HelpNeeder Jan 2 at 9:34
No. I've updated my answer so that the directory is created if it does not exist. Please note that in my sample, the fileName variable must contain path and file name like C:\Temp\TestFile.txt. It will check for and create C:\Temp and the write to the file TestFile.txt. – Thorsten Dittmar Jan 2 at 9:41
Ok, worth an answer points. One more thing though. I am not familiar with Flush, should that be recommended? – HelpNeeder Jan 2 at 9:56
1  
Flush just empty memory buffer to disk, it ensure that you don't have data which are not written on the file. – Franck LEVEQUE Jan 2 at 10:12
feedback

You don't need to create the file, StreamWriter will do it for you. But you need to ensure the directory exists, like you do.

You can also use File.OpenText.

link|improve this answer
This is good to know and link is very useful, thanks! – HelpNeeder Jan 2 at 9:39
feedback

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