StreamWriter is designed for character output in a particular encoding, whereas classes derived from Stream are designed for byte input and output.
1
vote
0answers
22 views
StreamWriter fails with large amount of data
I'm using StreamWriter to pass a large amount of data (30mb+) via a WebRequest POST. It fails with the error The stream does not support concurrent IO read or write operations. Contrary to the error ...
0
votes
2answers
54 views
Won't write to a text file
I have created this to a form. If receives all the info and seems to work, but when I check the text file nothing is written there, and it only lets me run the form twice before erroring out. Anyone ...
0
votes
1answer
70 views
C# StreamWriter not writing correctly
I am pulling data from a sproc and writing each column to a file. One of the columns I am pulling from is a memo field allowing up to 4096 characters and hard carriage returns. I have updated my query ...
0
votes
3answers
30 views
WMI query response is writing to file
I am unable to write the response of a WMI query to file but I can print it to console.
I rewrote the query to use different WMI methods to pull the data. I changed back to the below method of ease ...
0
votes
4answers
41 views
Best way to save low amount of configuration
I have to save the configuration of my device, and a friend told me that as it is just 2(two) fields, it would be better save/read it on a .txt file instead create a table. Is that true ?
Will it be ...
1
vote
3answers
56 views
c# using statement and StreamWriter
I am using a StreamWriter to write things into notepad. And I discover if I am not using statement and instance the StreamWriter alone. The method is unable to run. Does anybody know the reason?
...
-3
votes
1answer
38 views
StreamWriter opening and closing [closed]
I have a StreamWriter that seems to take a long time opening and closing a file. I can visibly see in windows explorer the file size switching between 0KB and 1KB (StreamWriter is in a timer). It is ...
0
votes
1answer
45 views
How to enable seeking in Azure Blob stream
I have a BlobStream that is created from the method OpenWriter.
var blob = CloudContainer.GetBlobReference(name));
if (blob == null)
{
return null;
}
return blob.OpenWrite();
Using this stream ...
1
vote
1answer
47 views
Is there a method to determine if a System.IO.StreamWriter object is open?
Im trying to determine if a StreamWriter object is open or already closed in a script. If it's not closed, I can write a new line to the file. If it is closed, I need to perform other actions....
...
0
votes
1answer
47 views
Winrt StreamWriter & StorageFile does not completely Overwrite File
Quick search here yielded nothing. So, I have started using some rather roundabout ways to use StreamWriter in my WinRT Application. Reading works well, writing works differently. What' I'm seeing ...
-2
votes
1answer
34 views
C# Stream Writer write from array from different class [closed]
i've looked at similar questions, but i cant seem to understand what they're doing.
Sorry, if this sounds redundant.
it can read the contents from the existing file, and i can modify the contents ...
0
votes
1answer
32 views
Why is my network read/write speed so slow on my app?
Ok, so i have made a server\client app for file transportation using a single-thread in a console app. Whenever i run both the client and the server on the same network it runs perfectly, but whenever ...
0
votes
1answer
40 views
Whats the correct way to use streamwriter & steamreader?
I'm into uncharted territory - I have to create an httppost for the first time (xml). I've looked at plenty of examples but to be frank, its kinda confusing for a noob.
The function I'm currently ...
0
votes
1answer
61 views
C# How do I export a MemoryStream's content to the console and write the stream's content onto the console?
The title says pretty much all.
I am making a logging system using the "Debug" class (Debug.WriteLine, etc.), and I've attached a TextWriterTraceListener to it so it can log all the strings that has ...
0
votes
1answer
65 views
How to do a Save As in Visual Basic (V11 2012)
I'm looking to do a "Save As" dialog box to handle my saves from an application I am making in Visual Basic.
This is the code I am using and I don't understand it the code either:
Private Sub ...
1
vote
3answers
61 views
Adding to text file without deleting
I need to add 4 variable numbers into a single line but using the current code it just replaces the numbers thus making it pointless.
using (StreamWriter writer = new StreamWriter("build.txt"))
{
...
0
votes
4answers
59 views
Writing log to a text file not working as expected
I have a log class as given below.
public class Log
{
public StreamWriter logFile
{ get; set; }
public string logFilePath = Environment.GetEnvironmentVariable("Temp")+"\\testlog.txt";
...
0
votes
4answers
72 views
read a value by its index from a file in C#
I'm new to programming, so please forgive my naive question .
I have double[ ] array, I manage to write it to text file using the code below:
using (System.IO.StreamWriter outfile = new ...
1
vote
1answer
37 views
Using FileWriter in vb.net
I am trying to write some text at the end of the file.
Here is my code
Dim Writer As System.IO.StreamWriter = IO.File.AppendText("D:\Vishal.txt")
Writer.WriteLine("I am Vishal")
But I am not ...
0
votes
2answers
70 views
ternary operator with a linq query and streamwriter
I'm using a linq query and then I use streamwriter and write data out. I need to check for nulls, so I'm wondering if it is "better" to do it in the linq query or in the foreach loop of WriteLine ...
0
votes
1answer
63 views
How to prevent overwriting in a text file?
I have a trouble with the following code. It should prevent overwriting records in the text file. My code is like that:
public static void WritingMethod()
{
StreamWriter Sw = new ...
0
votes
1answer
22 views
How to write data to a file in Visual Studios?
I'm writing a program that reads an input file that contains a line:
Scott Atchison,200,74
The file contains around 30 different lines of data. I know how to read in the file. After the file is ...
3
votes
2answers
96 views
Add a new line at a specific position in a text file.
I am trying to add a specific line of text in a file. Specifically between two boundaries.
An example of what it would look like if I wanted to add a line in between the boundaries of item1:
[item1]
...
0
votes
2answers
69 views
What consumes less resources and is faster File.AppendText or File.WriteAllText storing first in StringBuilder?
I have to write thousands of dynamically generated lines to a text file.
I have two choices, Which consumes less resources and is faster than the other?
A. Using StringBuilder and File.WriteAllText
...
0
votes
0answers
60 views
RESTfull HTTPWebRequest PUT The connection was closed unexpectedly
I have the following code that uses a StreamWriter to write to the request for a simple RESTfull call:
private T GetRestPutResult<T>(string restUri, string payload, Func<StreamReader, ...
-2
votes
1answer
53 views
reading from txt and adding read info to different variables
It's a pretty simple problem, I am creating game with C#(XNA) and I have a TXT file containing:
7
3
1,2,3,4,5,6,7,8,9,10
I need the first two numbers added to two variables or one array. And of ...
1
vote
4answers
91 views
Writing a string with a special character in C#
I am trying to write a string in a cache file (.txt) with the StreamWriter. It is working however the string in the cache file appears to be different from the string I want to copy.
My input string ...
0
votes
1answer
78 views
Find regex in file with StreamReader and overwrite it with StreamWriter
I am reading text file with StreamReader and doing Regex.Match to find specific info, now when I found it I want to replace it with Regex.Replace and I want to write this replacement back to the file. ...
0
votes
1answer
54 views
Specify position to write to a file using Writable Stream in nodejs
I want to write to a file multiple times using the Writable Stream in nodejs.
The problem is that I also want to specify the postion also to this writer.
Here is some background - I want to create a ...
0
votes
1answer
110 views
Copy a PDF Stream to File
I'm calling a routine in PHP (TCPDF) from C# via WebRequest using StreamReader. The PDF file is returned as a stream and stored in a string (obv). I know the data being returned to the string is ...
0
votes
4answers
74 views
How would I write multiple lines of text to a file all at once?
I need to write lots of text to a file at once, but It has to be formatted in a specific way and not all in one line.
The code I have is:
If System.IO.File.Exists(filepath) Then
Using ...
0
votes
1answer
58 views
System.Text.Encoding value
I'm getting an error with the optional argument, it says "Constant expression is required"
How I can resolve the problem?
Private Function Write_Text_To_File(ByVal Text_File As String, _
...
0
votes
1answer
78 views
Inputbox input to streamwriter file
So, in my assignment, we're supposed to create phone directories in the Directories.txt file and then change the listings in the directories. I made a blank directories.txt file and placed that in the ...
0
votes
2answers
36 views
how to write on file after the text already present int that file (cursor movement to the end of the file)
This is my code for reading file and writing file ; i want to write string content to the end of the text file. My aim is to have command on cursor movement/controlling in a text file.
please help me ...
0
votes
0answers
53 views
Create new file with StreamWriter everytime the program is executed
I am making simple tool for manipulating images in a database. I want to show the output result in a txt file and because the outcome may be different each time, I want the file to be rewritten with ...
2
votes
1answer
85 views
File is blank after using StreamWriter
I am trying to write some data to an existing file that is within my project(local file to the project). I used the following code
Uri path = new Uri(@"Notes.txt", UriKind.Relative);
...
0
votes
2answers
188 views
C# Getting a Form method into a User Control C#
I am preparing for my 1st year test and one of the questions I know about is "Create a user control with a textBox and a button, and on form create a listBox" Okay. Now what has to happen is the ...
0
votes
1answer
82 views
Copying a text file line by line vb.net half the size?
I'm trying to modify specific lines in a 6 gig text file (SQL script). So I read it in with IO.StreamReader.ReadLine and write to a new file with IO.StreamWriter.WriteLine. If the line matches a ...
0
votes
1answer
175 views
Loading data from a text file into a DataGridView and saving
1) How can I get a specific string from a text file to call back to datagrid
I would like the format to be identical to this:
ronald fernando banker's village philippines 8460999
jeniffer corpuz ...
0
votes
0answers
147 views
Upload File from Local to Remote URL Server
I need to upload files to a remote directory but having difficulty in doing so.
Any idea or links please?
I have tried the web client and also the posted file upload approach.
What I need e.g. is ...
0
votes
2answers
93 views
Stream Reader and Writer Conflict
I am making a class that is to help with saving some strings to a local text file (I want to append them to that file and not overwrite so that it is a log file). When I write with the streamwriter to ...
0
votes
1answer
33 views
Class not serializing to XML File
The code below does not output a stream. Looks correct to me but doesn't work.
LineItem i1 = new LineItem() { Id = 1, PartNumber = "abc" };
LineItem i2 = new LineItem() { Id = 2, PartNumber = "def" ...
0
votes
0answers
64 views
text file vs database?
I am generating millions of lines and store in text files. We generate few millions and store in text file and then repeat this up to a certain number.
I observed saving is taking too much time than ...
1
vote
2answers
89 views
Why would my text file suddenly stop being saved?
Mildly chastised here by wiser heads, I switched my calls to MessageBox.Show() to writing lines to a StringBuilder which is later saved to a file, both from the app's custom exception handler:
public ...
-2
votes
1answer
68 views
how to use a streamreader with button.Image
Edit: the map[][] is filled with buttons
The main issue is that an .image seems not to be able to save .
i want to make a load that when i load it in every map[i][j] regains its previous state. ...
0
votes
3answers
159 views
c# streamwriter add line on file creation
I am successfully writing data to csv files (yay!) in a Console App. Streamwriter is excellent for me up to now.
using (StreamWriter writer = new StreamWriter(file, true))
{
...
0
votes
3answers
70 views
C# File locked after making it
I am making a windows service that in part of it makes a .eml/txt file using the FileStream and StreamWriter and it works perfectly, doing everything I need it to do. The only problem is that the new ...
2
votes
3answers
542 views
C# Write to multiple files without constantly closing/reopening streams. SteamWriter?
I am trying to read in a table from an Access database, and then sort the data in that table out to a number of text files. The clincher is that the filename to write to is dependant upon values in ...
1
vote
1answer
110 views
Powershell SqlCommand and StreamWriter slow write
I'm writing a PowerShell script that pulls arbitrary SQL queries from a database. Those queries can become extremely large, and after trying sqlcmd I ended up with a StreamWriter / SqlCommand ...
0
votes
1answer
61 views
Why is my file not being written to?
I'm creating a "debug/log" textfile to try to see which "background threads" are running when the app I'm working on hangs.
First, as they're activated, I'm storing them in a StringBuilder:
public ...





