System.Diagnostics.Process p = new System.Diagnostics.Process();
p = System.Diagnostics.Process.Start("IExplore.exe", "c:\\");
p = System.Diagnostics.Process.Start("IExplore.exe", "c:\\");
또는 한줄로 처리 가능하다.
System.Diagnostics.Process p = System.Diagnostics.Process.Start("IExplore.exe", "c:\\");
관련 문서가 검색되었습니다.
- [2013/02/01] Windows 에 FTP 서버 구축(FileZilla Server) (7987) *1
- [2013/01/19] C#, 윈도우 버전 얻기 (18802)
- [2011/11/21] 윈도우7, 관리자 모드로 사용하기(XP처럼 사용하기) (8360)
- [2011/01/10] 윈도우 해상도 크기 얻기 (14642)
- [2010/08/03] 윈도우 버전 얻기 (13751)