파일복사1 C# 텍스트 파일 복사 코드 텍스트 파일 복사 코드입니다. public void CopyFile(string sourceFileName, string targetFileName) { StreamReader sr = null; StreamWriter sw = null; try { sr = new StreamReader(sourceFileName); sw = new StreamWriter(targetFileName); string str; while ((str = sr.ReadLine()) != null) { sw.WriteLine(str); } } catch (Exception ex) { throw ex; } finally { try { sr.Close(); } catch { } try { sw.Close(); } catch { } .. 2016. 5. 31. 이전 1 다음