윈도우에 등록된 확장자를 가진 파일 열기
C#2011. 11. 16. 16:05
윈도우에 등록된 확장자를 가진 파일을 열고자 할 때 사용한다.
간단하게
간단하게
Process.Start(filePath);또는
private void OpenFile(string filePath) { try { System.Diagnostics.ProcessStartInfo info = new System.Diagnostics.ProcessStartInfo(); info.RedirectStandardOutput = true; info.UseShellExecute = false; info.CreateNoWindow = true; info.FileName = "cmd"; info.Arguments = "/c \"" + filePath + "\""; //실행 후 cmd.exe를 종료한다. System.Diagnostics.Process proc = new System.Diagnostics.Process(); proc.StartInfo = info; proc.Start(); //string result = proc.StandardOutput.ReadToEnd(); //MessageBox.Show(result); } catch (Exception ex) { MessageBox.Show(ex.Message); } }
'C#' 카테고리의 다른 글
오라클 BLOB 등록 및 조회 (0) | 2016.04.14 |
---|---|
다른 프로젝트의 Resources.resx 파일의 리소스에 접근하기 (0) | 2012.05.07 |
날짜 문자열을 DateTime형으로 변환 (0) | 2011.10.27 |
ComboBox SelectedItem (0) | 2011.10.27 |
QRCode 이미지 제작(zxing 이용) (0) | 2011.08.18 |