본문 바로가기
C#

text file에 텍스트 추가하기(File.AppendText)

by 캡틴노랑이 2015. 12. 23.
반응형

text file 전체을 읽어오지 않고 라인 단위로 글을 추가한다.


string filePath = @"D:\05.work\FtpDownload\testtext.txt";

using (var sw = (!File.Exists(filePath) ? File.CreateText(filePath) :File.AppendText(filePath)))
{
    sw.WriteLine(msg);   
}
반응형

댓글