업무중에 갑자기 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:")

+ Recent posts