gpt4 book ai didi

如果与 fgets() 一起使用,chdir() 不会更改目录

转载 作者:行者123 更新时间:2023-11-30 18:54:52 26 4
gpt4 key购买 nike

#include<stdio.h>
#include<unistd.h>
#include<sys/types.h>
#include<sys/wait.h>
#include<string.h>

int main()
{
char temporaryPath[50];

fgets(temporaryPath, sizeof(temporaryPath), stdin);

if(chdir(temporaryPath) == -1)
printf("Failed to change directory\n");

getcwd(temporaryPath, 1000);
printf("%s> ", temporaryPath);
}

我一直在搜索很多有关更改目录的信息,但我无法弄清楚为什么 chdir() 在这种情况下失败。如果我使用 fgets() 而不是对临时路径数组进行硬编码,则 chdir() 无法更改目录。这是为什么?可以采取什么措施来解决这个问题?

非常感谢:)

最佳答案

if ( fgets(temporaryPath, sizeof(temporaryPath), stdin) != NULL )
{
int len = strlen(temporaryPath);
if ( temporaryPath[len-1] == '\n' )
{
temporaryPath[len-1] = '\0';
}

// Now that the newline has been trimmed, use temporaryPath.
}

关于如果与 fgets() 一起使用,chdir() 不会更改目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29419702/

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