gpt4 book ai didi

C - 程序中的 UNIX 命令

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

我正在尝试创建一个程序,它可以计算目录的数量,或可读/可写/可执行文件的数量。用户只需输入作者姓名和字母“d”、“r”、“w”或“x”。我尝试在程序中直接调用“ls -l”,但这导致了错误。如何在 C 程序中调用 UNIX 命令?

最佳答案

I tried to directly call "ls -l" in my program but that caused an error. How do you call UNIX commands within a C program?

您可以查看 system在您的 C 程序中,例如:

system( "ls -l" );

要使其发挥作用,您还需要 #include <stdlib.h>

关于C - 程序中的 UNIX 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35028149/

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