摘要: string filepath = "\\Program Files\\1.docx"; System.Diagnostics.Process p = new System.Diagnostics.Process(); System.Diagnostics.ProcessStartInfo pi = new System.Diagnostics.ProcessStartInfo(); pi.FileName = filepath; p.StartInfo = pi; p.Start(); 阅读全文
posted @ 2011-07-06 16:28 rui90102 阅读(285) 评论(0) 推荐(0) 编辑