指定ファイルを該当アプリで開く

//引数のパスを該当アプリで開く(xls,docなど)
private void OpenDirectFile(String FullPath) {
    //ファイル存在チェック
    if (File.Exists(FullPath) != true) {
        MessageBox.Show(FullPath + ” ファイルが見つかりません”);
    } else {
        try {
            //拡張子に関連付いたアプリで開く
            System.Diagnostics.Process.Start(FullPath);
        }
        catch (Exception eX) {
            MessageBox.Show(FullPath + “\n” + eX.ToString());
        }
    }
}