Linux C獲取當前工作目錄

qq_23664173發表於2020-11-08
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h> 
#define FILEPATH_MAX (80)
int main(){
    char strpwd[301];
    memset(strpwd,0,sizeof(strpwd));
    getcwd(strpwd,300);
    printf("當前目錄是:%s\n",strpwd);
}

相關文章