博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

电脑程式直接打开文件

Posted on 2013-06-25 12:29  奋斗ITan_yxing  阅读(190)  评论(0编辑  收藏  举报

用电脑的程式直接打开文件:

System.Diagnostics.ProcessStartInfo Info = new System.Diagnostics.ProcessStartInfo();

            //设置外部程序名              Info.FileName = "新建 Microsoft Word 文档.doc";

            //设置外部程序工作目录为               Info.WorkingDirectory = @"C:\Users\Administrator\Desktop";

            //最小化方式启动             Info.WindowStyle = System.Diagnostics.ProcessWindowStyle.Minimized;

            //声明一个程序类              System.Diagnostics.Process Proc;

            try             {                 Proc = System.Diagnostics.Process.Start(Info);                 System.Threading.Thread.Sleep(500);             }             catch (System.ComponentModel.Win32Exception)             {

                return;             }