使用 System.Diagnostics.Process 和 Process.Start 的提示/技巧/陷阱
我使用 Process.Start 来 shell 并调用 7zip 来归档内容 我还用它来调用 ffmpeg 来压缩视频文件。
那是不久前的事了……但我记得如果您不读取标准输出/错误,就会出现一些有关进程停止的问题。我不记得这一切了。有没有人有使用 System.Diagnostics.Process 来启动长时间运行的进程并等待其完成的经验?
谢谢
I've used Process.Start to shell out and call 7zip to archive stuff
I've also used it to call ffmpeg to compress video files.
That was a while ago..but I rememeber there was some issue about the pcocess stalling if you don't read off the standardoutput/error. I don't remember everything about it. Does anyone have experience using System.Diagnostics.Process for the purposes of initiating a long running process and waiting for it to finish?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您不重定向输出,则不必担心。
If you do not redirect the output it should not be a concern.
如果您像我一样重定向,请使用以下内容来避免死锁。请参阅 ProcessStartInfo.RedirectStandardOutput 的文档,网址为 http://msdn .microsoft.com/en-us/library/system.diagnostics.processstartinfo.redirectstandardoutput.aspx。我最长的会话是四十分钟,用 ExifTool 扫描我的硬盘。
If you redirect as I did, using the following to avoid deadlocks. See doumentation for ProcessStartInfo.RedirectStandardOutput at http://msdn.microsoft.com/en-us/library/system.diagnostics.processstartinfo.redirectstandardoutput.aspx. My longest session was forty minutes scanning my hard drive with ExifTool.