我有一个问题,这是我在 testchdir.c 文件中的原始代码:
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
int main(int argc,char **argv)
{
if (argc < 2)
{
printf("Usage: %s <pathname\n",argv[0]);
exit(1);
}
if (chdir(argv[1]) == 0)
{
printf("success in chdir\n");
return 0;
}
else
{
printf("error happened");
exit(1);
}
}
在我的 Linux 系统中,我的原始路径是/home/Tom3543
,然后当我使用 编译上面的代码时gcc -o testchdir testchdir.c
,它看起来不错。后来,我想改变我的路径并执行程序,所以我输入
./testchdir /home/tom3543/C++
“在 chdir 中成功”出现在我的终端中,但我的路径在我的终端中仍然是 /home/Tom3543。有人可以帮我解释为什么吗?我对此感到困惑!