11-17-2012, 11:33 AM
If you want to simply write text by appending it to the existing file just create a new stream writer
Whent set to true it will append the text to the existing file. If the file does not exist the StreamWriter wil create a new file
Code:
StreamWriter sr = new StreamWriter("path to file", true);
Whent set to true it will append the text to the existing file. If the file does not exist the StreamWriter wil create a new file
Sssssssssoftware developer...