发布时间:2014-09-05 16:58:08作者:知识屋
UNIX的目录本质上是文件,低级文件编程可以完成对目录文件的读写。但目录文件有特定的格式:它由目录项组成,各个目录项的结构固定。
1、工作目录
在unix下对工作目录的操作可分为读取工作目录和更改工作目录两种。
1)读取工作目录
函数getcwd和getwd返回进程的工作目录,其原型如下:
#include<unistd.h>
char *getcwd(char *buf,size_t size);
char *getwd(char *pathname);
函数getcwd获取当前工作目录的绝对路径。如果字符指针buf值不为空,则将次绝对路径存入buf指向的内存空间中,参数size记载了字符串buf 的最大存储空间;否则函数将自动分配内存空间存储该路径,参数size无效。调用成功后,函数返回指向存储路径的指针,调用失败时返回NULL。
函数getwd拷贝当前工作目录的绝对路径到字符串pathname中,并且要求工作目录的最大长度小于PATH_MAX。调用成功时,函数返回一个指向字符串的指针,否则返回NULL。
2)更改工作目录
函数chdir和fchdir重新制定文件的工作目录,其原型如下:
#include<unistd.h>
int chdir(const char *path);
int fchdir(int fildes);
/*-----dir1.c-----*/
#include<unistd.h>
#include<stdio.h>
void main()
{
char buf[255];
fprintf(stderr,"pwd=[%s]/n",getcwd(buf,sizeof(buf)));
chdir("../");
fprintf(stderr,"pwd=[%s]/n",getcwd(buf,sizeof(buf));
}
2.目录的创建与删除
#include<sys/stat.h>
int mkdir(const char *path,mode_t mode);
int rmdir(char *path);
3.目录的读取
#include<dirent.h>
DIR *opendir(const char *dirname);
struct dirent *readdir(DIR *dirp);
int closedir(DIR *dirp);
一个简单的读取目录程序,它列举了目录下的全部文件以及对应的i节点编号
#include<stdio.h>
#include<dirent.h>
void main()
{
DIR *pdir;
struct dirent *pent;
if(arg !=2) return ;
if((pdir =opendir(argv[1]))==NULL)
{
fprintf(stderr,"open dir failed./n");
return ;
}
while(1)
{
pent=readdri(pdir);
if(pent==NULL) break;
fprintf(stderr,"%5d %s",pent->d_ino,pent->d_name);
}
closedir(pdir);
}
作者“pstary”
linux一键安装web环境全攻略 在linux系统中怎么一键安装web环境方法
Linux网络基本网络配置方法介绍 如何配置Linux系统的网络方法
Linux下DNS服务器搭建详解 Linux下搭建DNS服务器和配置文件
对Linux进行详细的性能监控的方法 Linux 系统性能监控命令详解
linux系统root密码忘了怎么办 linux忘记root密码后找回密码的方法
Linux基本命令有哪些 Linux系统常用操作命令有哪些
Linux必学的网络操作命令 linux网络操作相关命令汇总
linux系统从入侵到提权的详细过程 linux入侵提权服务器方法技巧
linux系统怎么用命令切换用户登录 Linux切换用户的命令是什么
在linux中添加普通新用户登录 如何在Linux中添加一个新的用户
2012-07-10
CentOS 6.3安装(详细图解教程)
Linux怎么查看网卡驱动?Linux下查看网卡的驱动程序
centos修改主机名命令
Ubuntu或UbuntuKyKin14.04Unity桌面风格与Gnome桌面风格的切换
FEDORA 17中设置TIGERVNC远程访问
StartOS 5.0相关介绍,新型的Linux系统!
解决vSphere Client登录linux版vCenter失败
LINUX最新提权 Exploits Linux Kernel <= 2.6.37
nginx在网站中的7层转发功能