본문 바로가기

Programming

파일) Line단위로 쓰기

public void MakeFile (List<string> _stringListA, string _fname) {

string a_filePath = GetFilePath (_fname);

FileStream a_fstrem = new FileStream (a_filePath, FileMode.Create, FileAccess.Write);

StreamWriter a_sw = new StreamWriter (a_fstrem);

----

----

for (int i = 0; i < _stringListA.Count; i++) {

a_sw.WriteLine (_stringListA [i]);

}

 

a_sw.Close ();

a_fstrem.Close ();

}