Tagged Questions
The streamwriter tag has no wiki summary.
12
votes
2answers
7k views
Do I need to do StreamWriter.flush()?
suppose this code (C#):
using (MemoryStream stream = new MemoryStream())
{
StreamWriter normalWriter = new StreamWriter(stream);
BinaryWriter binaryWriter = new BinaryWriter(stream);
...
8
votes
3answers
310 views
Why does file extension affect write speed? (C#, StreamWriter)
I am currently testing the performance of different methods for logging text data into a file. It seems that when I open/write/close a large amount of times, the extension used affects the ...
7
votes
3answers
4k views
Redirect .NET StreamWriter output to a String variable
I'd like to know if it is possible to redirect StreamWriter output to a variable
Something like
String^ myString;
StreamWriter sw = gcnew StreamWriter([somehow specify myString])
...
5
votes
3answers
663 views
What is the difference between calling Stream.Write and using a StreamWriter?
What is the difference between instantiating a Stream object, such as MemoryStream and calling the memoryStream.Write() method to write to the stream, and instantiating a StreamWriter object with the ...
4
votes
3answers
86 views
Using StreamReader and StreamWriter to Modify Files
I am trying to use StreamReader and StreamWriter to Open a text file (fixed width) and to modify a few specific columns of data. I have dates with the following format that are going to be converted ...
4
votes
8answers
214 views
C# add line numbers to a text file
I am trying to read a text file in C# and add line numbers to the lines.
This my input file:
This is line one
this is line two
this is line three
And this should be the output:
1 ...
4
votes
1answer
117 views
Code cutting off string after runs many times
This code runs in a loop. After the 38th time it runs, the string that gets printed to the text file cuts off immediately after the second "M", doesn't even print the comma, and then stops printing ...
4
votes
4answers
1k views
Why does StreamReader.ReadLine() return a value for a one line file with no newline?
I want to append two text files together.
I have one file with a carriage return line feed at the end. Observe file A which is 28 bytes.
this is a line in the file\n
then I have another file ...
4
votes
3answers
613 views
Power Loss after StreamWriter.Close() produces blank file, why?
Ok, so to explain; I am developing for a system that can suffer a power failure at any point in time, one point that I am testing is directly after I have written a file out using a StreamWriter. The ...
3
votes
1answer
53 views
Saving to a textfile with forms
So I have a GUI using MSVS 2010 and I am creating many forms.
My main form opens up my text file "database" and concats the proper data to a different opened file. If the opened file has data that ...
3
votes
4answers
143 views
Streamwriter Lock Not Working
I'm taking over a C# project, and when testing it out I'm getting errors. The error is that the log file cannot be written to because it is in use by another process. Here's the code:
public ...
3
votes
1answer
63 views
Writing to a file while reading it with streams?
I wrong a function to read a configuration file, but if the command line arguement "-ip x.x.x.x" is specified, I want to overwrite the IP setting in the configuration file. I am using the following ...
3
votes
1answer
125 views
How to find out whether a memory stream is filled properly
The code below tries to fill the message byte array with some simple text until the buffer is filled.
byte[] message = new byte[1024];
using (MemoryStream memoryStream = new MemoryStream(message, ...
3
votes
3answers
277 views
Writing Hard drive serial string to Binary file
I have a simple function that grabs the hard drive serial number from the C:\ drive and puts it into a string:
ManagementObject disk = new ManagementObject("win32_logicaldisk.deviceid=\"C:\"");
...
3
votes
3answers
1k views
Trouble with MemoryStream and StreamWriter
I am not sure what I am doing wrong, have seen a lot of examples, but can't seem to get this working.
public static Stream Foo()
{
var memStream = new MemoryStream();
var streamWriter = new ...
3
votes
5answers
2k views
FileStream vs/differences StreamWriter?
Question:
What is different between FileStream and StreamWriter in dotnet?
What context are you supposed to use it? What is their advantage and disadvantage?
Is it possible to combine these two ...
3
votes
5answers
1k views
simultaneous read-write a file in C#
I have a file containing data that I'd like to monitor changes to, as well as add changes of my own. Think like "Tail -f foo.txt".
Based on this thread, it looks like I should just create a ...
3
votes
4answers
988 views
C# StreamWriter and StreamReader memory managment problem, why won't memory used deallocate?
So I'm using a StreamReader that uses a MemoryStream to write to a StreamWriter and inside of this application but the memory usage increases by 300mb (From one of the larger inputs) and does not ...
3
votes
4answers
166 views
Program crashes after trying to use a recently created file. C#
So here is my code
if (!File.Exists(pathName))
{
File.Create(pathName);
}
StreamWriter outputFile = new StreamWriter(pathName,true);
But whenever I run the program the first time the path with ...
3
votes
4answers
602 views
StreamWriter not creating new file
I'm trying to create a new log file every hour with the following code running on a server. The first log file of the day is being created and written to fine, but no further log files that day get ...
3
votes
4answers
1k views
Console.SetOut to StreamWriter, write to textfile constantly
I'm using the Console.SetOut method to write all my Console.Out.WriteLines to a file, and this works. The only problem is that it only writes everything to the textfile when I close my application ...
3
votes
3answers
2k views
c# HttpWebRequest POST'ing failing
So i'm trying to POST something to a webserver.
System.Net.HttpWebRequest EventReq = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create("url");
System.String Content = "id=" + Id;
...
3
votes
4answers
1k views
Having problem opening/writing to a text file in ASP.NET
I want to write some stats to a text file every time a person loads a page. But every once in awhile I am getting at 'Could Not Open File, Already in use' type of error. I can not 100% replicate ...
2
votes
2answers
59 views
streamwriter does not save unicode files correctly
I'm opening a text file and removing the first line to prepare it for importing in a database using bulk insert. Here is my code:
string tempFile = Path.GetTempFileName();
using (var sr = new ...
2
votes
2answers
68 views
Writing console lines to file
I have a console app in c# and am trying to make it so that all the lines in the console are written into a file. I have tried using a streamwriter.
using (StreamWriter writer = new ...
2
votes
2answers
48 views
Program Shutdown Messes Up StreamWriter
Im working on a little ATM program and I'm stuck on a StreamWritter problem.
On load, my program must use a StreamReader to read in 4 .txt files all located in my bin/debug. Then the user is asked to ...
2
votes
1answer
81 views
C# - FileStream: both lock a file and at the same time be able to read it without truncating it and write it with truncating it
I suppose my title isn't that clear.
I'll try to explain:
I can write and read a file using a FileStream
FileStream fs = new FileStream("C:\\Users\\Public\\text.txt", FileMode.OpenOrCreate, ...
2
votes
3answers
90 views
Forcing StreamWriter to change Encoding
I am trying to save a file using DialogResult and StringBuilder. After making the text, I am calling the following code to save the file:
if (dr == DialogResult.OK)
{
StreamWriter sw ...
2
votes
3answers
114 views
how to read special character like é, â and others in C#
I can't read those special characters
I tried like this
1st way #
string xmlFile = File.ReadAllText(fileName);
2nd way #
FileStream fs = new FileStream(fileName, FileMode.Open, FileAccess.Read);
...
2
votes
3answers
67 views
Calling unmanaged DLL with fixed buffer from managed code (Encoding issue)
I have an unmanaged DLL that gets called from .NET with pre-allocated buffers to get filled within the unmanaged DLL (according to Pass C# string to C++ and pass C++ result (string, char*.. whatever) ...
2
votes
4answers
146 views
Should I call Close() or Dispose() for stream objects?
Classes such as Stream, StreamReader, StreamWriter etc implements IDispose interface. That means, we can call Dispose() method on objects of these classes. They've also defined a public method called ...
2
votes
2answers
190 views
Problem with file IO streamreader + streamwriter C#
Hi guys I am kinda new to C#. I am trying to do some file io stuff. When I read and write it is only doing it on one line. Is there a way to advance the streamreader/streamwriter? It is for a school ...
2
votes
1answer
47 views
How can I write to the next line in a text file?
How can I make sure that the message I'm writing is on a blank line and doesn't write over more text? Does it involve reading the file first? Here is my code so far.
Console.WriteLine("What do you ...
2
votes
3answers
85 views
StreamWriter ordering using Foreach
I have some text that contains numerous values like so:
PartNumber Description Amount
Fid1 blahblahblah 999934109
0603 moreblah 12
exclude ehh? 981
...
2
votes
3answers
105 views
Dictionary Ordering
I am using this var ordered = dictionary.Keys.OrderBy(x => x); to order a dictionary.
This works great ordering the dictionary alpha-numerically and I would like to keep it this way and add a few ...
2
votes
2answers
93 views
Why does this not write the correct bytes to the file?
Here is my test to write to a file:
[Test]
public void CanWriteManifestToFile()
{
byte[] data = new byte[] { 0x00, 0x01, 0x80, 0x1f };
MemoryStream ms = new ...
2
votes
2answers
41 views
Conditional to detect a drive
I am having a lot of trouble trying to make a conditional to detect whether a drive (flash drive e: ) is connected to the computer. If it is not, I just want to send it to the c drive.
Here is my ...
2
votes
2answers
103 views
.NET Logging Class Doesn't Write
I just wrote a simple logging class for use among various threads, based on examples I found at MSDN and a few other sites. Problem is, it creates the file log file, but never actually writes anything ...
2
votes
4answers
172 views
Append line to the file without line break
Right now i am appending new line to existing file like this:
using (StreamWriter sw = File.AppendText(TemplateOutput))
{
sw.WriteLine(parsedFile);
}
This way AppendText adds ...
2
votes
1answer
381 views
VB.Net Replacing Specific Values in a Large Text File
I have some large csv files (1.5gb each) where I need to replace specific values. The method I'm currently using is terribly slow and I'm fairly certain that there should be a way to speed this up ...
2
votes
5answers
111 views
Text in file is not appended - C#
I've decided to add a logging mechanism to my application so I can catch any errors or exceptions that are thrown. I've noticed that when an entry to the log is created it is not added to the log, it ...
2
votes
3answers
629 views
Edit a text file over FTP in C#?
I want to, basically, use the following code to edit a C# file:
var file = new StreamReader("ftp://xxx.xxx.x.x/xxx.txt"); //[ip address/file]
label1.Text = file.ReadLine();
...
2
votes
3answers
423 views
.Net StreamWriter.BaseStream, what does this definition mean? “Gets the underlying stream that interfaces with a backing store.”
I was reading about StreamWriter today, and came across this property, BaseStream.
I was looking for a definition and found this
"Gets the underlying stream that interfaces with a backing store."
...
2
votes
1answer
364 views
Raised exception in the case of concurrent file access with StreamReader
I found a post talking about handling concurrent file access with StreamWriter.
The problem is that the answers do not manage the scenario where the file is being accessed but multiple processes.
...
2
votes
4answers
234 views
Closing a file without using using
I have a class which reads data from one file stream and writes to another. I am concerned about closing the streams after the processing has finished in closeFiles().
How would you handle the ...
2
votes
4answers
2k views
How to send keys instead of characters to a process?
System.Diagnostics.Process exposes a StreamWriter named StandardInput, which accepts only characters as far as I know.
But I need to send keystrokes as well, and some keystrokes don't map well to ...
2
votes
3answers
723 views
Ambiguous Newline behavior in StreamReader
When i write using StreamWriter.WriteLine, it adds CRLF to the string and sends it (to the SerialPort).
When i read a string in the same C# program using StreamReader.ReadLine with data like below, ...
2
votes
5answers
899 views
Adding a Line to the Middle of a File with .NET
Hello I am working on something, and I need to be able to be able to add text into a .txt file. Although I have this completed I have a small problem. I need to write the string in the middle of the ...
2
votes
1answer
3k views
Why does my StreamWriter Response output produce garbage accents in Excel but look fine in Notepad?
I'm using a technique from another Stack Overflow question to write a CSV file to the Response output for a User to Open/Save. The file looks good in Notepad, but when I open it in Excel the accented ...
2
votes
4answers
2k views
StreamWriter .NET - how to get the best performance? C# .Net
What is the recommended approach to get the best performance when we need to create text files bigger than 10MB.
There are multiple sections in the code that need to write stuff to a single file. ...