c#
c# 특정 폴더나 사이트 열기
퐁퐁
2010. 8. 16. 22:24
// 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"); }