在C中更改工作目录?

Dra*_*vic 5 c chdir

我是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;


}
Run Code Online (Sandbox Code Playgroud)

Som*_*ude 5

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

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

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