C realpath函数不适用于源文件中定义的字符串

我对realpath函数有一个奇怪的问题.当函数被赋予一个作为程序参数接收的字符串时,该函数会起作用,但是当给出我在源代码中定义的字符串时,该函数会失败.这是一个简单的程序:

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

int main(int argc, const char* argv[])
{
    char* fullpath = (char*)malloc(PATH_MAX);
    if(realpath(argv[1], fullpath) == NULL)
    {
        printf("Failed\n");
    }
    else
    {
        printf("%s\n", fullpath);
    }
}

当我使用参数〜/ Desktop / file(文件存在且是常规文件)运行时,我得到了预期的输出

/home/<username>/Desktop/file

这是该程序的另一个版本:

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

int main(int argc, const char* argv[])
{

    const char* path = "~/Desktop/file";

    char* fullpath = (char*)malloc(PATH_MAX);
    if(realpath(path, fullpath) == NULL)
    {
        printf("Failed\n");
    }
    else
    {
        printf("%s\n", fullpath);
    }
}

当我运行这个程序时,我得到输出

Failed

为什么第二个失败?

解决方法:

const char* path = "~/Desktop/file";

在您的程序中,波形符(即:〜)未被展开(e.i:替换为主目录的路径).

当您在命令行中将其作为参数提供时,就像在第一个程序中一样,它由shell扩展.

上一篇:静态资源的访问


下一篇:如何调整PHP实际路径缓存?