gpt4 book ai didi

c# - C# 中的 c++ "_popen"是什么?

转载 作者:行者123 更新时间:2023-11-30 12:15:19 24 4
gpt4 key购买 nike

C# 中的 c++ "_popen"是什么?我想用一些命令打开文件到流中。例如

ffmpeg -i "D:\Downloads\shakira.mp3"  -ac 1 -ar 11025 -f s16le -t 20 -ss 20 - 2>nul

提前致谢。

最佳答案

查看:

http://msdn.microsoft.com/en-us/library/system.diagnostics.processstartinfo.redirectstandardoutput.aspx

这是一个片段:

// Start the child process.
Process p = new Process();
// Redirect the output stream of the child process.
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.FileName = "Write500Lines.exe";
p.Start();
// Do not wait for the child process to exit before
// reading to the end of its redirected stream.
// p.WaitForExit();
// Read the output stream first and then wait.
string output = p.StandardOutput.ReadToEnd();
p.WaitForExit();

关于c# - C# 中的 c++ "_popen"是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7580028/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com