其他分享
首页 > 其他分享> > 文件IO-chdir-getcwd

文件IO-chdir-getcwd

作者:互联网

getcwd

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

#define MAX 512

int main(int argc, char * argv[])
{
    // 方法一
    char path[MAX];
    path[0] = '\0';
    getcwd(path, sizeof(path));
    puts(path);

    // 方法二
    char * buf = NULL;
    buf = getcwd(NULL, 0);
    puts(buf);
    free(buf);

    exit(EXIT_SUCCESS);
}

标签:chdir,int,getcwd,char,IO,path,include,buf
来源: https://www.cnblogs.com/starc/p/16614795.html