首页 > 开发 > 综合 > 正文

C#中调用对应的应用程打开文件序的代码

2024-07-21 02:25:59
字体:
来源:转载
供稿:网友
'浏览选择文件

openfiledialog   dlg   =   new   openfiledialog();  
   dlg.defaultext   =   "xls";  
   dlg.filter   =   "text   files(*.xls)|*.xls||";  
   if   (dlg.showdialog()   ==   dialogresult.ok)  
   {  
    string   filepath   =   dlg.filename;
    txtsourcefilename.text=filepath;
   }

'调用外部应用程序打开选择的文件

string openfilename;
   openfilename=txtsourcefilename.text;
   processstartinfo pinfo = new processstartinfo();
   pinfo.useshellexecute = true;
    if (file.exists(openfilename))
    {
     pinfo.filename = openfilename;
     //启动进程
     process p = process.start(pinfo);
    }
    


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表