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 ();
}
'Programming' 카테고리의 다른 글
앱 종료 시키기 Xamarin forms App Exit (0) | 2019.11.23 |
---|---|
아이폰에 프로비전 파일 넣기 (2019.11.23) (0) | 2019.11.23 |
파일) Path (0) | 2017.03.17 |
문자열) 숫자에 , (콤마) 넣기 (0) | 2017.03.17 |
스파인 애니메이션 셋팅값 설정 (0) | 2017.03.07 |