我尝试将Launcher.LaunchFileAsync()
方法与示例.txt文件一起使用并且它不起作用 - 对于写字板(这是Windows 8上用于显示.txt的默认程序)总是返回false文件)。
但是,如果我将控制面板中的.txt处理设置更改为记事本或Word一切正常,LaunchFileAsync()
将返回true并正确显示文件。
任何想法为什么会这样?
答案 0 :(得分:0)
如果您只想运行像(记事本,wordpad,Internet Explorer等)的桌面应用程序,那么请浏览Process Methods和ProcessStartInfo类。
try
{
// Start the child process.
Process p = new Process();
// Redirect the output stream of the child process.
p.StartInfo.UseShellExecute = false;
p.StartInfo.FileName = "C:\Path\To\App.exe";
p.Start();
}
// Uses the ProcessStartInfo class to start new processes,
// both in a minimized mode.
void OpenWithStartInfo()
{
ProcessStartInfo startInfo = new ProcessStartInfo("IExplore.exe");
startInfo.WindowStyle = ProcessWindowStyle.Minimized;
Process.Start(startInfo);
startInfo.Arguments = "www.northwindtraders.com";
Process.Start(startInfo);
}