반응형
텍스트 파일 복사 코드입니다.
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 { }
}
}
반응형
'.Net' 카테고리의 다른 글
C# DataTable에서 중복 제거한 결과 얻기(Select Distinct) (2) | 2016.08.08 |
---|---|
C# InputBox (0) | 2016.06.07 |
C# 개행문자 Replace하기 (1) | 2016.05.31 |
C# DateTimePicker 커스텀 포맷(Custom Format) 적용하기 (0) | 2016.02.23 |
엑셀파일에 ODBC를 연결하여 엑셀의 데이터 가지고 오기 (0) | 2015.12.24 |
댓글