Live Chat Icon For mobile
Live Chat Icon

I just want to write a simple text file. Is there some simple code for this?

Platform: WinForms| Category: General IO

It doesn’t get any simpler than this. In production code always make sure that you handle exceptions.


using System.IO;
....
// filePath has the complete path to the file
StreamWriter writer = new StreamWriter(filePath);
writer.Write(fileNewText);
writer.Close();

Share with

Related FAQs

Couldn't find the FAQs you're looking for?

Please submit your question and answer.