본문 바로가기

c#

c# 특정 폴더나 사이트 열기

        // Log 폴더 열기
        private void btnOpenLog_Click(object sender, EventArgs e)
        {
            System.Diagnostics.Process.Start("explorer.exe", Application.StartupPath + "\\Log");
        }

        // tistory 사이트 열기
        private void btnOpenErrorLog_Click(object sender, EventArgs e)
        {
            System.Diagnostics.Process.Start("explorer.exe", "www.tistory.com");
        }