使用 C# ProcessStartInfo 运行 privoxy
当我尝试运行 privoxy 时,我不断收到此错误无法检查配置文件'config.txt:错误号0'
static void StartPrivoxy(Process p)
{
p.StartInfo = new ProcessStartInfo(@"C:\Program Files (x86)\Privoxy\privoxy.exe");
p.Start();
}
目录应该是正确的。我可以从 C:\Program Files (x86)\Privoxy\ 的命令提示符运行它,并且可以双击它。配置位于同一目录中。
我使用相同的代码来运行其他程序。
When I try to run privoxy, I keep getting this error can't check configuration file 'config.txt: error number 0'
static void StartPrivoxy(Process p)
{
p.StartInfo = new ProcessStartInfo(@"C:\Program Files (x86)\Privoxy\privoxy.exe");
p.Start();
}
The directory should be correct. I can run it from command prompt at C:\Program Files (x86)\Privoxy\ and I can double click it. The config is in the same directory.
I used the same code to run other programs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过设置该进程的工作目录?
Have you tried setting the working directory for the process?