첨부 실행 코드는 나눔고딕코딩 폰트를 사용합니다.
728x90
반응형
728x170
using System.Diagnostics;

#region 파일 프로세스 실행하기 - ExecuteFileProcess(fullPath)

/// <summary>
/// 파일 프로세스 실행하기
/// </summary>
/// <param name="fullPath">완전한 경로</param>
public void ExecuteFileProcess(string fullPath)
{
    Process process = new Process();

    process.StartInfo.FileName    = fullPath;
    process.StartInfo.Verb        = "Open";
    process.StartInfo.WindowStyle = ProcessWindowStyle.Normal;

    process.Start();
}

#endregion
728x90
반응형
그리드형(광고전용)
Posted by icodebroker

댓글을 달아 주세요