0

我正在尝试tlbExp.exe使用 C# 从 C#调用Process.Start。我将命令字符串作为参数传递,但无论它是什么风格,我总是会收到一条错误消息:

The system cannot find the file specified

   at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo)
   at System.Diagnostics.Process.Start()
   at System.Diagnostics.Process.Start(ProcessStartInfo startInfo)
   at System.Diagnostics.Process.Start(String fileName)

如果我在调试时尝试在命令窗口中单独运行命令字符串,它会执行它应该发生的事情(从 dll 生成的 tlb)。但是,我不能让它从代码中工作。

string tlb;
...
tlb += @"C:\Program files\Microsoft SDKs\Windows\v6.0A\bin\tlbExp.exe";
tlb += @""""; tlb += @" """; tlb += outputDllPath;
tlb += @""" /out:"""; tlb += outputTlbPath; tlb += @"""";
Process.Start(tlb); 
4

1 回答 1

2

您需要使用接受ProcessStartInfo对象的重载:

var programPath = @"""C:\Program files\Microsoft SDKs\Windows\v6.0A\bin\tlbExp.exe""";
var info = new ProcessStartInfo(programPath);
info.Arguments = string.Format("\"{0}\" /out:\"{1}\"", outputDllPath, outputTlbPath);

Process.Start(info);

为了使其通用,将第一行更改为:

var programFiles = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles);
var programPath = string.Format("\"{0}\"", Path.Combine(programFiles, @"Microsoft SDKs\Windows\v6.0A\bin\tlbExp.exe"));
于 2012-12-10T11:41:21.783 回答