C#中调用对应的应用程打开文件序的代码
来源:网络整理 责任编辑:栏目编辑 发表时间:2013-07-01 11:08 点击:次
'浏览选择文件
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);
}
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>