c獲取運行程序的工做目錄以及文件大小

  • 獲取用戶工做目錄,以及程序運行用戶信息。

#include <pwd.h>
#include<sys/types.h>
#include<unistd.h>ui

if (geteuid() == 0) {
        LOGI("running from root user");
    }

    struct passwd *pw   = getpwuid(getuid());
    const char *homedir = pw->pw_dir;
  • 獲取文件大小
fseek(f, 0, SEEK_END);
long pos = ftell(f);
fseek(f, 0, SEEK_SET);
相關文章
相關標籤/搜索