使用 System.Diagnostics.Process 和 Process.Start 的提示/技巧/陷阱

发布于 2024-08-27 08:19:52 字数 200 浏览 6 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

童话 2024-09-03 08:19:52

如果您不重定向输出,则不必担心。

If you do not redirect the output it should not be a concern.

过期情话 2024-09-03 08:19:52

如果您像我一样重定向,请使用以下内容来避免死锁。请参阅 ProcessStartInfo.RedirectStandardOutput 的文档,网址为 http://msdn .microsoft.com/en-us/library/system.diagnostics.processstartinfo.redirectstandardoutput.aspx。我最长的会话是四十分钟,用 ExifTool 扫描我的硬盘。

        _process.Start()

        Dim sXmlOutput As String = _process.StandardOutput.ReadToEnd
        Dim sErrOutput As String = _process.StandardError.ReadToEnd

        _process.WaitForExit()

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.

        _process.Start()

        Dim sXmlOutput As String = _process.StandardOutput.ReadToEnd
        Dim sErrOutput As String = _process.StandardError.ReadToEnd

        _process.WaitForExit()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文