看了個關於stat的帖子~~
原來還公尺用過滴~~
在網上查了資料~~
自己除錯了下~~
原來stat()是這麼好用哇~~
以下是**別人的blog~~
函式都是獲取檔案(普通檔案,目錄,管道,socket,字元,塊()的屬性。
函式原型
#include
int stat(const char *restrict
pathname, struct stat *restrict
buf);
提供檔案名字,獲取檔案對應屬性。
int fstat(int
filedes, struct stat *
buf);
通過檔案描述符獲取檔案對應的屬性。
int lstat(const char *restrict
pathname, struct stat *restrict
buf);
連線檔案描述命,獲取檔案屬性。
struct stat ;
這是自己的除錯**~~
#include
#include
using
namespace
std;
intmain()
以後有了新知識都會寫的~~給自己加深記憶~~!!
stat函式的用法
stat函式的用法 標頭檔案 include 函式定義 int stat const char file name,struct stat buf 函式說明 通過檔名filename獲取檔案資訊,並儲存在buf所指的結構體stat中 返回值 執行成功則返回0,失敗返回 1,錯誤 存於errno 需要...
c語言中stat的用法
1 stat結構體 結構定義於 usr include sys stat.h 檔案中 struct stat finfo stat sfilename,finfo int size finfo.st size struct stat mode t st mode 檔案對應的模式,檔案,目錄等 ino...
stat用法 獲取檔案對應許可權的數字
題目 檔案屬性為 rw r r 對應許可權為644,如何使用命令獲取許可權對應的數字?舉例如下 linuxidc localhost ll l rw r r 1linuxidc wheel 38oct 1216 291.txt使用stat命令可以檢視 linuxidc localhost stat ...