티스토리 뷰
콘솔로 작성된 C# 프로젝트에서 파일로 관련 로그를 남기는 방법
/// ms까지 시간을 구하는 함수
public string GetDateTime()
{
DateTime NowDate = DateTime.Now;
return NowDate.ToString("yyyy-MM-dd HH:mm:ss") + ":" + NowDate.Millisecond.ToString("000");
}
/// 로그내용
public void Log(String msg)
{
string FilePath = Directory.GetCurrentDirectory() + @"\Logs\" + DateTime.Today.ToString("yyyyMMdd") + ".log";
string DirPath = Directory.GetCurrentDirectory() + @"\Logs";
string temp;
DirectoryInfo di = new DirectoryInfo(DirPath);
FileInfo fi = new FileInfo(FilePath);
try
{
if (di.Exists != true) Directory.CreateDirectory(DirPath);
if (fi.Exists != true)
{
using (StreamWriter sw = new StreamWriter(FilePath))
{
temp = string.Format("[{0}] {1}", GetDateTime(), msg);
sw.WriteLine(temp);
sw.Close();
}
}
else
{
using (StreamWriter sw = File.AppendText(FilePath))
{
temp = string.Format("[{0}] {2} - {1}", GetDateTime(), this.TargetKey, msg);
sw.WriteLine(temp);
sw.Close();
}
}
}
catch (Exception e)
{
}
}
'기억하자정보 > 기타' 카테고리의 다른 글
CPU사용률 100%현상 문제 : WinSAT 중지 (1) | 2018.02.27 |
---|---|
이 프로젝트는 이 컴퓨터에 없는 NuGet 패키지를 참조합니다. (0) | 2017.09.06 |
SSH를 이용한 파일 다운로드 하기 :: SCP (0) | 2017.03.28 |
윈도우 10 업데이트 재부팅 중지 : Windows10 (0) | 2017.03.22 |
IoT 전용망 로라(LoRA) vs NB-IoT : 사물인터넷 전용망 (1) | 2017.03.11 |
- 안내
- 궁금한 점을 댓글로 남겨주시면 답변해 드립니다.