文件存在检查不工作

时间:2017-01-27 19:38:22

标签: c

在我的代码中,以下函数检查libs但它不起作用。

system("cd /usr/libt");
for(value = 0; value < 19; value++)
{
    if( access( LIB_ARRAY[value], F_OK ) != -1 )
    {
       if (iLang_config == 1)
            printf("%s Existiert bereits.\n", LIB_ARRAY[value]);
        if (iLang_config == 2)
             printf("%s already exists.\n", LIB_ARRAY[value]);
    }
    else
    {
        //snprintf(buf, sizeof(buf), "fetch http://koridev.eu/download/libs/%s", \
                   LIB_ARRAY[value]);
        //system(buf) ;
        printf("lol ich fehle %s\n",  LIB_ARRAY[value]);
    }
}

您可以找到完整的实施here

修改:Test.txt

中存在/usr/libt文件

0 个答案:

没有答案