我想用wordpad.exe打开文档,但它仍然以微软词开头
我目前有:
string fullPath = helpFiles[index];
ProcessStartInfo psi = new ProcessStartInfo("wordpad.exe");
psi.FileName = Path.GetFileName(fullPath);
psi.WorkingDirectory = Path.GetDirectoryName(fullPath);
psi.Arguments = fullPath;
Process.Start(psi);
答案 0 :(得分:1)
我认为fullPath
是您的文件名称。您正在将FileName
属性设置为文档,这意味着它将在默认文档编辑器中打开(在本例中为Word)。
您正在使用的ProcessStartInfo
的重载会为您设置文件名,但您要用Path.GetFileName(fullPath);
替换该值,这就是完全忽略wordpad.exe
的原因。将FileName
设置为wordpad
,将arguments
设置为文件路径(即删除FilePath行)。
ProcessStartInfo psi = new ProcessStartInfo("wordpad");
psi.WorkingDirectory = Path.GetDirectoryName(fullPath);
psi.Arguments = fullPath;
Process.Start(psi);
答案 1 :(得分:0)
你应该这样做:
string fullPath = helpFiles[index];
//Check to make sure the path is valid
Process.Start(fullPath);
根据用户设置文件默认值的方式,让计算机确定打开文件的最佳程序。