struct stat
{
mode_t st_mode; 文件類型损痰,文件權(quán)限
ino_t st_ino; i節(jié)點(diǎn)號
dev_t st_dev;
dev_t st_rdev; 設(shè)備文件序號
nlink_t st_nlink; 鏈接
uid_t st_uid;
gid_t st_gid; 用戶ID
off_t st_size; 文件大小,此字段只對普通文件肃弟、目錄文件和符號連接有意義紊婉。
time_t st_atime; 最后存取時(shí)間
time_t st_mtime; 文件內(nèi)容的最后修改時(shí)間
time_t st_ctime; 文件狀態(tài)的最后修改時(shí)間
long st_blksize;
long st_blocks;
};
1聪轿,stat函數(shù)取得文件信息捌斧。
#include <sys/types.h>
#include <sys/stat.h>
int stat(const char *pathname, struct stat *buf);
int fstat (int fd,struct stat *buf);
int lstat(const char *pathname, struct stat *buf);
lstat函數(shù)類似于stat,但是當(dāng)命名的文件是一個(gè)符號連接時(shí),lstat返回該符號連接的有關(guān)信息,而不是由該符號連接引用的文件的信息
2戈稿,access函數(shù)判斷文件權(quán)限
#include<unistd.h>
int access (const char *name, int mode) ;
返回:若成功則為 0,若出錯(cuò)則為- 1
access函數(shù)的mode常數(shù),取自 <unistd.h>
mode 說 明
R_OK 測試讀許可權(quán)
W_OK 測試寫許可權(quán)
X_OK 測試執(zhí)行許可權(quán)
F_OK 測試文件是否存在
3西土,umask函數(shù)設(shè)置文件創(chuàng)建屏蔽字
#include <sys/types.h>
#include <sys/stat.h>
mode_t umask(mode_t task) ;
返回:以前的文件方式創(chuàng)建屏蔽字
4,chmod函數(shù)用于修改文件的權(quán)限
#include <sys/types.h>
#include <sys/stat.h>
int chmod(const char *pathname, mode_t mode);
int fchmod(int fd, mode_t mode);
兩個(gè)函數(shù)返回:若成功則為 0,若出錯(cuò)則為- 1
5鞍盗,chown函數(shù)可用于更改文件的用戶 ID和組ID需了。
#include <sys/types.h>
#include <unistd.h>
int chown(const char *pathname,uid_t owner,gid_t group);
int fchown(int fd, uid_t owner, gid_t group);
int lchown(const char *pathname, uid_t owner, gid_t group);
三個(gè)函數(shù)返回:若成功則為 0,若出錯(cuò)則為- 1
6,在文件末尾處截短文件可以調(diào)用函數(shù) truncate和ftruncate般甲。將一個(gè)文件的長度截短為 0是一個(gè)特例,用O_TRUNC標(biāo)志可以做到這一點(diǎn)肋乍。
#include <sys/types.h>
#include <unistd.h>
int truncate(const char *pathname, off_t
length) ;
int ftruncate(int filedes, off_t length) ;
兩個(gè)函數(shù)返回;若成功則為 0,若出錯(cuò)則為- 1
7,創(chuàng)建一個(gè)向現(xiàn)存文件連接的方法是使用link函數(shù),想當(dāng)于硬連接 ln敷存。只有超級用戶進(jìn)程可以創(chuàng)建指向一個(gè)目錄的新連接墓造。其理由是這樣做可能在文件系統(tǒng)中形成循環(huán),大多數(shù)處理文件系統(tǒng)的公用程序都不能處理這種情況
#include <unistd.h>
int link(const char*oldpath, const char *newpath) ;
返回:若成功則為 0,若出錯(cuò)則為- 1
為了刪除一個(gè)現(xiàn)存的目錄項(xiàng),可以調(diào)用 unlink函數(shù)。
#include <unistd.h>
int unlink(const char *pathname) ;
返回:若成功則為 0,若出錯(cuò)則為-1锚烦。此函數(shù)刪除目錄項(xiàng),并將由 pathname所引用的文件的連接計(jì)數(shù)減 1觅闽。
硬連接的一些限制: ( a )硬連接通常要求連接和文件位于同一文件系統(tǒng)中, ( b )只有超級用戶才能創(chuàng)建到目錄的硬連接。
symlink函數(shù)創(chuàng)建一個(gè)符號連接涮俄。相當(dāng)于軟連接蛉拙,ln -s
#include <unistd.h>
int symlink(const char *oldpath, const char *sympath) ;
返回:若成功則為 0,若出錯(cuò)則為- 1
因?yàn)閛pen函數(shù)跟隨符號連接,所以需要有一種方法打開該連接本身,并讀該連接中的名字。
readlink函數(shù)提供了這種功能彻亲。
#include <unistd.h>
int readlink(const char *pathname, char *buf, int bufsize) ;
返回:若成功則為讀的字節(jié)數(shù),若出錯(cuò)則為- 1
此函數(shù)組合了open, read和close的所有操作孕锄。
8,用mkdir函數(shù)創(chuàng)建目錄,用 rmdir函數(shù)刪除目錄苞尝。
#include <sys/types.h>
#include <sys/stat.h>
int mkdir(const char *pathname, mode_t mode) ;
返回:若成功則為 0,若出錯(cuò)則為- 1
#include <unistd.h>
int rmdir(const char *pathname) ;
返回:若成功則為 0,若出錯(cuò)則為 - 1
9硫惕,remove函數(shù)解除對一個(gè)文件或目錄的連接。對于文件, remove的功能與unlink相同野来。對于目錄, remove的功能與rmdir相同恼除。
#include <stdio.h>
int remove(const char *pathname) ;
返回:若成功則為 0,若出錯(cuò)則為- 1
文件或目錄用rename函數(shù)更名。
#include <stdio.h>
int rename(const char *oldname, const char *newwname) ;
返回:若成功則為 0,若出錯(cuò)則為- 1
10曼氛,一個(gè)文件的存取和修改時(shí)間可以用 utime函數(shù)更改豁辉。
#include <sys/types.h>
#include <utime.h>
int utime (const char *name, const struct utimebuf *t);
返回:若成功則為 0,若出錯(cuò)則為- 1
如果times是一個(gè)空指針,則存取時(shí)間和修改時(shí)間兩者都設(shè)置為當(dāng)前時(shí)間;
如果times是非空指針,則存取時(shí)間和修改時(shí)間被設(shè)置為 times所指向的結(jié)構(gòu)中的值。此時(shí),進(jìn)程的有效用戶ID必須等于該文件的所有者 ID,或者進(jìn)程必須是一個(gè)超級用戶進(jìn)程舀患。對文件只具有寫許可權(quán)是不夠的
此函數(shù)所使用的結(jié)構(gòu)是:
struct utimbuf {
time_t actime; /access time/
time_t modtime; /modification time/
}
11徽级,對文件目錄的操作函數(shù),opendir readdir rewinddir
#include <sys/types.h>
#include <dirent.h>
DIR *opendir(const char *pathname) ;
返回:若成功則為指針,若出錯(cuò)則為 NULL
struct dirent *readdir(DIR *dr);
返回:若成功則為指針,若在目錄尾或出錯(cuò)則為 NULL
void rewinddir(DIR *dr);
重置讀取目錄的位置為開頭
int close(DIR *dr); 返回:若成功則為 0,若出錯(cuò)則為- 1
定義在頭文件<dirent.h>中的dirent結(jié)構(gòu)與實(shí)現(xiàn)有關(guān)聊浅。 此結(jié)構(gòu)至少包含下列兩個(gè)成員:
struct dirent {
ino_t d_ino;
char d_name[NAME_MAX+1];
}
12餐抢,chdir,改變當(dāng)前目錄
#include<unistd.h>
int chdir(const char *pathname);
int pchdir(int fd);
getcwd,得到當(dāng)前目錄的完整路徑.
#include<unistd.h>
char *getcwd(char *buf, size_t size);
若失敗返回NULL现使, buf為存儲路徑的字符數(shù)組,size為長度