Create file at C:\Text\myText.txt
try
{
string fileName = @"C:\Text\myText.txt";
using (System.IO.StreamWriter writer = new System.IO.StreamWriter(fileName, true))
{
writer.Write("Write some text here");
}
}
catch (Exception exp)
{
Console.WriteLine(exp.Message);
}
Console.ReadKey();
No comments:
Post a Comment