vote up 2 vote down star

I want to both read and write to a file. this dont works

static void Main(string[] args)
        {
            StreamReader sr = new StreamReader(@"C:\words.txt");
            StreamWriter sw = new StreamWriter(@"C:\words.txt");
        }

How do both read and write file in C#?

flag

4 Answers

vote up 11 vote down

You need a single stream, opened for both reading and writing.

FileStream fileStream = new FileStream(
      @"c:\words.txt", FileMode.OpenOrCreate, 
      FileAccess.ReadWrite, FileShare.ReadWrite));
link|flag
1  
FileShare.ReadWrite is not neccesary, and is likely undeseriable, it will allow other applications to Read and Write your file while you are using it. Generally FileShare.None is preferred when writing to a file, to prevent others from accessing a file while you work on it. – ScottS Apr 8 at 4:56
@ScottS: I agree as far as the ReadWrite is necessary as you can let the constructor figure out the sharing mode. – Samuel Apr 8 at 4:58
vote up -5 vote down

Sorry, but I think you'd be able to google that on your own. You're using the right classes, but you'll have to do more then simply create some instances. Here is an explanation written by Microsoft:

How to: Read Text from a File

How to: Write Text to a File

link|flag
I want to both Write and Read on Same time. same file – Hey Mar 3 at 9:32
3  
If people google'd everything for themselves then this site is useless. This site is here for any question related to programming, no matter how advanced. Building a database of this type of question is as valuable as any other. We are here to help not reprimand. – Gary Willoughby Mar 3 at 9:44
2  
-1. Your google attempts failed to answer the question. SO aims to be THE source of programming answers. Ideally a "google" for this question should lead back to SO. However the questions need to be asked and answered on SO first. Hence "why don't you google" sort of answer are unacceptable. – AnthonyWJones Mar 3 at 9:50
vote up 0 vote down

how if I want to modify text from file?

link|flag
You have 2 accounts? You can use the Comment feature instead of posting another answer like this. – Jon Limjap Apr 8 at 5:11
vote up 3 vote down
var fs = File.Open("file.name", FileMode.OpenOrCreate, FileAccess.ReadWrite);
var sw = new StreamWriter(fs);
var sr = new StreamReader(fs);

...

fs.Close();
//or sw.Close();

The key thing is to open the file with the FileAccess.ReadWrite flag. You can then create whatever Stream/String/Binary Reader/Writers you need using the initial FileStream.

link|flag

Your Answer

Get an OpenID
or

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