gpt4 book ai didi

c - 在 C 中的 Linux 上的 $PATH 中搜索文件

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:44:24 24 4
gpt4 key购买 nike

我想测试我的程序运行的系统上是否安装了GNUPlot。
为此,我想我将通过 stat() 调用测试用户安装位置是否存在 gnuplot 可执行文件。

但是,我不知道如何读取 C 中的 $PATH 环境变量,因此我无法测试这些位置中是否存在该文件。

最佳答案

使用 getenv() function.

char *paths = getenv("PATH");

要遍历以列分隔的路径列表的各个部分,请使用 strchr():

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

char *dup = strdup(getenv("PATH"));
char *s = dup;
char *p = NULL;
do {
p = strchr(s, ':');
if (p != NULL) {
p[0] = 0;
}
printf("Path in $PATH: %s\n", s);
s = p + 1;
} while (p != NULL);

free(dup);

关于c - 在 C 中的 Linux 上的 $PATH 中搜索文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14571215/

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