https://blog.csdn.net/linxinfa/article/details/51679528
調(diào)用外部程序
System.Diagnostics.Process.Start("notepad.exe"); -- 打開記事本
System.Diagnostics.Process.Start("calc.exe "); -- 打開計算器
System.Diagnostics.Process.Start("regedit.exe "); -- 打開注冊表
System.Diagnostics.Process.Start("mspaint.exe "); -- 打開畫圖板
System.Diagnostics.Process.Start("write.exe "); -- 打開寫字板
System.Diagnostics.Process.Start("mplayer2.exe "); --打開播放器
System.Diagnostics.Process.Start("taskmgr.exe "); --打開任務(wù)管理器
System.Diagnostics.Process.Start("eventvwr.exe "); --打開事件查看器
System.Diagnostics.Process.Start("winmsd.exe "); --打開系統(tǒng)信息
System.Diagnostics.Process.Start("winver.exe "); --打開Windows版本信息
System.Diagnostics.Process.Start("mailto: "+ address); -- 發(fā)郵件
打開word文檔
#if UNITY_STANDALONE_WIN
string _path = "file://" + Application.dataPath + @"/StreamingAssets/";
System.Diagnostics.Process.Start("explorer", "/n, " + _path + "word" + ".doc");
#endif