解析linux 文件和目录操作的相关函数

struct stat
{
mode_t    st_mode;    文件类型,文件权限
ino_t     st_ino;        i节点号
dev_t    st_dev;       
dev_t    st_rdev;    设备文件序号
nlink_t    st_nlink;    链接
uid_t    st_uid;
gid_t     st_gid;        用户ID
off_t    st_size;    文件大小,此字段只对普通文件、目录文件和符号连接有意义。
time_t    st_atime;    最后存取时间
time_t    st_mtime;    文件内容的最后修改时间
time_t    st_ctime;    文件状态的最后修改时间
long    st_blksize;   
long     st_blocks;
};

1,stat函数取得文件信息。
#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函数类似于stat,但是当命名的文件是一个符号连接时,lstat返回该符号连接的有关信息,而不是由该符号连接引用的文件的信息

2,access函数判断文件权限
#include<unistd.h>
int access (const char *name, int mode) ;
返回:若成功则为 0,若出错则为- 1
access函数的mode常数,取自 <unistd.h>
mode                 说   明
R_OK                  测试读许可权
W_OK                 测试写许可权
X_OK                测试执行许可权
F_OK                测试文件是否存在

3,umask函数设置文件创建屏蔽字
#include <sys/types.h>
#include <sys/stat.h>
mode_t umask(mode_t task) ;
返回:以前的文件方式创建屏蔽字

4,chmod函数用于修改文件的权限
#include <sys/types.h>
#include <sys/stat.h>
int chmod(const char *pathname, mode_t mode);
int fchmod(int fd, mode_t mode);
两个函数返回:若成功则为 0,若出错则为- 1

5,chown函数可用于更改文件的用户 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);
三个函数返回:若成功则为 0,若出错则为- 1

6,在文件末尾处截短文件可以调用函数 truncate和ftruncate。将一个文件的长度截短为 0是一个特例,用O_TRUNC标志可以做到这一点。
#include <sys/types.h>
#include <unistd.h>
int truncate(const char *pathname, off_t
length) ;                                       
int ftruncate(int filedes, off_t length) ;
两个函数返回;若成功则为 0,若出错则为- 1

7,创建一个向现存文件连接的方法是使用link函数,想当于硬连接 ln。只有超级用户进程可以创建指向一个目录的新连接。其理由是这样做可能在文件系统中形成循环,大多数处理文件系统的公用程序都不能处理这种情况
#include <unistd.h>
int link(const char*oldpath, const char *newpath) ;
返回:若成功则为 0,若出错则为- 1

为了删除一个现存的目录项,可以调用 unlink函数。
#include <unistd.h>
int unlink(const char *pathname) ;
返回:若成功则为 0,若出错则为-1。此函数删除目录项,并将由 pathname所引用的文件的连接计数减 1。

硬连接的一些限制: ( a )硬连接通常要求连接和文件位于同一文件系统中, ( b )只有超级用户才能创建到目录的硬连接。

symlink函数创建一个符号连接。相当于软连接,ln -s
#include <unistd.h>
int symlink(const char *oldpath, const char *sympath) ;
返回:若成功则为 0,若出错则为- 1

因为open函数跟随符号连接,所以需要有一种方法打开该连接本身,并读该连接中的名字。
readlink函数提供了这种功能。
#include <unistd.h>
int readlink(const char *pathname, char *buf, int bufsize) ;
返回:若成功则为读的字节数,若出错则为- 1
此函数组合了open, read和close的所有操作。

8,用mkdir函数创建目录,用 rmdir函数删除目录。
#include <sys/types.h>
#include <sys/stat.h>
int mkdir(const char *pathname, mode_t mode) ;
返回:若成功则为 0,若出错则为- 1
#include <unistd.h>
int rmdir(const char *pathname) ;
返回:若成功则为 0,若出错则为 - 1

9,remove函数解除对一个文件或目录的连接。对于文件, remove的功能与unlink相同。对于目录, remove的功能与rmdir相同。
#include <stdio.h>
int remove(const char *pathname) ;
返回:若成功则为 0,若出错则为- 1

文件或目录用rename函数更名。
#include <stdio.h>
int rename(const char *oldname, const char *newwname) ;
返回:若成功则为 0,若出错则为- 1

10,一个文件的存取和修改时间可以用 utime函数更改。
#include <sys/types.h>
#include <utime.h>
int utime (const char *name, const struct utimebuf *t);
返回:若成功则为 0,若出错则为- 1
如果times是一个空指针,则存取时间和修改时间两者都设置为当前时间;
如果times是非空指针,则存取时间和修改时间被设置为 times所指向的结构中的值。此时,进程的有效用户ID必须等于该文件的所有者 ID,或者进程必须是一个超级用户进程。对文件只具有写许可权是不够的

此函数所使用的结构是:
struct utimbuf {
time_t actime;                /*access time*/
time_t modtime;               /*modification time*/
}

11,对文件目录的操作函数,opendir readdir rewinddir
#include <sys/types.h>
#include <dirent.h>
DIR *opendir(const char *pathname) ;
返回:若成功则为指针,若出错则为 NULL

struct dirent *readdir(DIR *dr);
返回:若成功则为指针,若在目录尾或出错则为 NULL

void rewinddir(DIR *dr);
重置读取目录的位置为开头

int close(DIR *dr); 返回:若成功则为 0,若出错则为- 1

定义在头文件<dirent.h>中的dirent结构与实现有关。 此结构至少包含下列两个成员:
struct dirent {
    ino_t d_ino;
    char d_name[NAME_MAX+1];
}

12,chdir,改变当前目录
#include<unistd.h>
int chdir(const char *pathname);
int pchdir(int fd);

getcwd,得到当前目录的完整路径.
#include<unistd.h>
char *getcwd(char *buf, size_t size);
若失败返回NULL, buf为存储路径的字符数组,size为长度

(0)

相关推荐

  • linux中常用脚本和函数分享

    #查找当前目录中是否存在指定目录,若不存在,则创建之 复制代码 代码如下: function mkdir_1{  if test ! -d $1    then     mkdir $1  fi} #指定文件中的"prefix = .*"串替换为"prefix=/home/gnome-unicore-install2/usr/" #可以用来作为sed用法的参考 复制代码 代码如下: function modify_prefix {   chmod +w $1   

  • 解析Linux下的时间函数:设置以及获取时间的方法

    一.时间函数 复制代码 代码如下: time_t time(time_t *t);char *asctime(const struct tm *tm);char *asctime_r(const struct tm *tm, char *buf);char *ctime(const time_t *timep);char *ctime_r(const time_t *timep, char *buf);struct tm *gmtime(const time_t *timep); //获取的为英

  • linux shell自定义函数(定义、返回值、变量作用域)介绍

    linux shell 可以用户定义函数,然后在shell脚本中可以随便调用.下面说说它的定义方法,以及调用需要注意那些事项. 一.定义shell函数(define function) 语法: [ function ] funname [()] { action; [return int;] } 说明: 1.可以带function fun() 定义,也可以直接fun() 定义,不带任何参数. 2.参数返回,可以显示加:return 返回,如果不加,将以最后一条命令运行结果,作为返回值. retu

  • Linux Shell脚本系列教程(四):使用函数添加环境变量

    一.简介 环境变量通常用于存储路径列表,这些路径用于搜索可执行文件.库文件等.例如:$PATH.$LD_LIBRARY_PATH,它们通常看起来像这样: 复制代码 代码如下: PATH=/usr/bin;bin LD_LIBRARY_PATH=/usr/lib;lib 这意味着只要shell需要运行二进制可执行文件时,它会首先查找/usr/bin,然后查找/bin.在ubuntu14.04中,PATH和LD_LIBRARY_PATH存储的路径如下所示: 复制代码 代码如下: PATH=/usr/

  • linux系统上支持php的 iconv()函数的方法

    1.下载libiconv函数库http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.9.2.tar.gz: 2.解压缩tar -zxvf libiconv-1.9.2.tar.gz; 3.安装libiconv 复制代码 代码如下: #configure --prefix=/usr/local/iconv #make #make install 4.重新编译php 增加编译参数--with-iconv=/usr/local/iconv windows下 最近

  • linux下C语言中的mkdir函数与rmdir函数

    mkdir函数用于创建目录.格式如下:#include<sys/types.h>#include<sys/stat.h>#include<unistd.h>int mkdir(const char *pathname,mode_t mode); 其中参数pathname是新创建目录的目录名,mode指定该目录的访问权限,这些位将受到文件创建方式屏蔽(umask)的修正. 该函数创建一个名为pathname的空目录,此目录自动含有"."和".

  • linux下system函数的简单分析

    简单分析了linux下system函数的相关内容,具体内容如下 int __libc_system (const char *line) { if (line == NULL) /* Check that we have a command processor available. It might not be available after a chroot(), for example. */ return do_system ("exit 0") == 0; return do

  • linux下access函数的用法介绍

    Linux内核总是根据进程的有效用户ID和有效组ID来决定一个进程是否有权访问某个文件.因此,在编写调整用户ID的程序时,在读写一个文件之前必须明确检查其用户是否原本就有对此文件的访问权限.为了实现这种确认,需要使用access函数. 一般形式为;#include<unistd.h>int access(const char *pathname,int mode); 其中,pathname是希望检验的文件名(包含路径),mode是欲检查的访问权限,如下所示 R_OK   检验调用进程是否有读访

  • PHP执行linux系统命令的常用函数使用说明

    system函数 说明:执行外部程序并显示输出资料. 语法:string system(string command, int [return_var]); 返回值: 字符串 详细介绍: 本函数就像是 C 语中的函数 system(),用来执行指令,并输出结果.若是 return_var 参数存在,则执行 command 之后的状态会填入 return_var 中.同样值得注意的是若需要处理用户输入的资料,而又要防止用户耍花招破解系统,则可以使用 EscapeShellCmd().若 PHP 以

  • Linux里awk中split函数的用法小结

    The awk function split(s,a,sep) splits a string s into an awk array a using the delimiter sep. set time = 12:34:56set hr = `echo $time | awk '{split($0,a,":" ); print a[1]}'` # = 12set sec = `echo $time | awk '{split($0,a,":" ); print

随机推荐