stat函式學習

2021-08-06 05:37:41 字數 386 閱讀 7824

函式名: stat()

功 能: 得到檔案的資訊,將其儲存在buf結構中,buf的位址以引數形式傳遞給stat。

用 法: int _stat(const char *path,struct _stat *buffer)

引數:

const char *path: 檔名或者目錄名

struct _stat *buffer:結構體物件位址

返回值: 成功返回0,返回-1表示失敗。

#include

#include

#include

int main(void)

stat結構體:

struct stat ;

0 給主人留下些什麼吧!~~

stat函式與stat結構體

在linux中,可以利用stat 函式來獲取乙個檔案的狀態 include include int stat const char file name,struct stat buf 這個函式執行成功返回0,失敗返回 1。取得的檔案狀態存放在buf指標指向的struct stat結構提中,struc...

stat 函式解析

stat 函式是用來獲取檔案的各種屬性的乙個linux下的常用api函式。函式原型為int stat const char path,struct stat buf stat定義如下 struct stat st mode 的定義 16位整數 0 2 其他人許可權 8進製 s iroth 00004...

stat 函式詳解

stat函式作用 獲取檔案資訊 標頭檔案 include include include 函式原型 int stat const char path,struct stat buf 返回值 成功返回0,失敗返回 1 引數 檔案路徑 名 struct stat 型別的結構體struct stat 結構...