gpt4 book ai didi

c++ - 如何判断 popen() 是否成功?

转载 作者:太空狗 更新时间:2023-10-29 20:00:09 24 4
gpt4 key购买 nike

你怎么知道 popen() 是成功/完成运行 shell 还是失败?

最佳答案

popen return value :

Upon successful completion, popen() shall return a pointer to an open stream that can be used to read or write to the pipe. Otherwise, it shall return a null pointer and may set errno to indicate the error.

fp = popen("ls *", "r");
if (fp == NULL)
/* Handle error */;

关于c++ - 如何判断 popen() 是否成功?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8582142/

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