탑에디터

StreamWriter

2020.12.29 17:34

toped2017 조회 수:290

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace WinFormStreamWriter
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            SaveStreamWriter(DateTime.Now.ToString("yyyyMMddHHmmss") + ".log", "StreamWriter Test 내용");
        }
        public void SaveStreamWriter(string pFileName, string pTextStr)
        {
            try
            {
                string fleNm = Application.LocalUserAppDataPath + "\\" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".log";

                using (StreamWriter sw = new StreamWriter(pFileName))
                {
                    sw.WriteLine("---------------------------------------------------------------------");
                    sw.WriteLine(pTextStr);
                    sw.WriteLine("---------------------------------------------------------------------");
                    sw.Close();
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }

    }
}
번호 제목 글쓴이 날짜 조회 수
» StreamWriter toped2017 2020.12.29 290
3 SortedDictionary 사용법 toped2017 2019.10.15 1425
2 파일삭제 toped2017 2019.09.16 551
1 파일 복사 toped2017 2019.08.21 5613