Posted in 面试题 onDecember 26, 2014
可以使用Explorer.exe进行来进行相关操作,Explorer.exe会调用相关的程序打开文档。代码如下:
private void OpenWindowsExplorer(string urlorpath)
{
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = “explorer.exe”;
startInfo.Arguments = urlorpath;
try
{
Process.Start(startInfo);
}
catch (Exception e)
{
MessageBox.Show(“Error”);
}
}
private void OpenWindowsExplorer(string urlorpath)
{
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = “explorer.exe”;
startInfo.Arguments = urlorpath;
try
{
Process.Start(startInfo);
}
catch (Exception e)
{
MessageBox.Show(“Error”);
}
}
C#如何调用Windows程序打开一个文档
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Tags in this post...
Reply on: @reply_date@
@reply_contents@