【问题标题】:Changing working directory in C?在 C 中更改工作目录?
【发布时间】:2023-03-30 05:20:01
【问题描述】:

我是 C 新手,在使用 chdir() 时遇到问题。我使用一个函数来获取用户输入,然后我从中创建一个文件夹并尝试 chdir() 进入该文件夹并创建另外两个文件。但是,当我尝试通过 finder(手动)访问该文件夹时,我没有权限。无论如何,这是我的代码,有什么提示吗?

int newdata(void){
    //Declaring File Pointers
    FILE*passwordFile;
    FILE*usernameFile;

    //Variables for
    char accountType[MAX_LENGTH];
    char username[MAX_LENGTH];
    char password[MAX_LENGTH];

    //Getting data
    printf("\nAccount Type: ");
    scanf("%s", accountType);
    printf("\nUsername: ");
    scanf("%s", username);
    printf("\nPassword: ");
    scanf("%s", password);

    //Writing data to files and corresponding directories
    umask(0022);
    mkdir(accountType); //Makes directory for account
    printf("%d\n", *accountType);
    int chdir(char *accountType);
    if (chdir == 0){
        printf("Directory changed successfully.\n");
    }else{
        printf("Could not change directory.\n");
    }

    //Writing password to file
    passwordFile = fopen("password.txt", "w+");
    fputs(password, passwordFile);
    printf("Password Saved \n");
    fclose(passwordFile);

    //Writing username to file
    usernameFile = fopen("username.txt", "w+");
    fputs(password, usernameFile);
    printf("Password Saved \n");
    fclose(usernameFile);

    return 0;


}

【问题讨论】:

  • 这行很奇怪:int chdir(char *accountType);

标签: c chdir


【解决方案1】:

您实际上并没有更改目录,您只是为chdir 声明了一个函数原型。然后,您继续将该函数指针与零(与 NULL 相同)进行比较,这就是它失败的原因。

你应该包含原型的头文件<unistd.h>,然后实际调用函数:

if (chdir(accountType) == -1)
{
    printf("Failed to change directory: %s\n", strerror(errno));
    return;  /* No use continuing */
}

【讨论】:

  • 所以如果你不介意我问我如何更改到 accountType 目录并在代码中创建两个文件?抱歉,我是 C 的新手。=/ 感谢您的回答。
【解决方案2】:
int chdir(char *accountType); 

没有调用函数,请尝试以下代码:

mkdir(accountType); //Makes directory for account
printf("%d\n", *accountType);
if (chdir(accountType) == 0) {
    printf("Directory changed successfully.\n");
}else{
    printf("Could not change directory.\n");
}

另外,printf 行看起来很可疑,我想你想要的是 print accountType 字符串:

printf("%s\n", accountType);

【讨论】:

    最近更新 更多