업무중에 갑자기 LOG를 찍어봐야할때 간단하게 txt파일로 만들어 확인할 수 있는 코드
string Fpath = @"C:\temp\새폴더\LOG.txt"; // 파일 경로 DirectoryInfo dif = new DirectoryInfo(@"C:\temp\새폴더"); // 디렉토리 경로 if (!dif.Exists) // 디렉토리 체크 { dif.Create(); } FileInfo file = new FileInfo(Fpath); // 파일 체크 후 생성 if (!file.Exists) { FileStream fs = file.Create(); fs.Close(); } File.AppendAllText(Fpath, "LOG 메세지"); // 시간추가 DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss:") |
'Programing > C#' 카테고리의 다른 글
C# Excel Process Kill ( 프로세스 죽이기 ) (0) | 2022.03.12 |
---|---|
C# Excel 프로세스 해제 (0) | 2022.03.12 |
C# CrossThread Error 해결 (0) | 2022.02.21 |
C# DataSet을 이용해서 파일정보(이름, 확장자, 수정일, 크기) 가져오기 (0) | 2022.02.09 |
C# Panel에 간단하게 타원(Rectangle)그리기 (0) | 2019.12.17 |