资源描述:
《操作系统实验5文件系统_ Linux文件管理.doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、......实验5文件系统:Linux文件管理1.实验目的(1)掌握Linux提供的文件系统调用的使用方法;(2)熟悉文件和目录操作的系统调用用户接口;(3)了解操作系统文件系统的工作原理和工作方式。2.实验内容(1)利用Linux有关系统调用函数编写一个文件工具filetools,要求具有下列功能:***********0.退出1.创建新文件2.写文件3.读文件4.复制文件5.修改文件权限6.查看文件权限7.创建子目录8.删除子目录9.改变当前目录到指定目录10.链接操作***********代码:
2、#include.专业.专注.......#include#include#include#include#include#include#includevoidmenu(void);voidopenfile(void);voidwritefile(void);voidreadfile(void);voidcopyfile(void);v
3、oidchmd(void);voidckqx(void);voidcjml(void);voidscml(void);voidggml(void);voidylj(void);intmain(){intchoose;intsuliangjin=1;.专业.专注.......menu();scanf("%d",&choose);while(choose!=0){switch(choose){case1:openfile();break;case2:writefile();break;case3:read
4、file();break;case4:copyfile();break;case5:chmd();break;case6:ckqx();break;case7:cjml();break;case8:scml();break;case9:ggml();break;case10:ylj();break;}menu();scanf("%d",&choose);}return0;}.专业.专注.......voidmenu(void){printf("文件系统");printf("1.创建新文件");
5、printf("2.写文件");printf("3.读文件");printf("4.复制文件");printf("5.修改文件权限");printf("6.查看文件权限");printf("7.创建子目录");printf("8.删除子目录");printf("9.改变目前目录到指定目录");printf("10.链接操作");printf("0.退出");printf("请输入您的选择...");}voidopenfile(void){intfd;if((
6、fd=open("/tmp/hello.c",O_CREAT
7、O_TRUNC
8、O_RDWR,0666))<0)perror("open");.专业.专注.......elseprintf("openfile:hileo.c%d",fd);if(close(fd)<0)perror("close");elseprintf("Closehello.c");}voidwritefile(void){intfd,size,len;char*buf="Hello!I'mwritingtothisfile
9、!";len=strlen(buf);if((fd=open("/tmp/hello.c",O_CREAT
10、O_TRUNC
11、O_RDWR,0666))<0)perror("open");elseprintf("openfile:hileo.c%d",fd);if((size=write(fd,buf,len))<0)perror("write");elseprintf("Write:%s",buf);if(close(fd)<0)perror("close");.专业.专注.......els
12、eprintf("Closehello.c");}voidreadfile(void){intfd,size;charb[10];if((fd=open("/tmp/hello.c",O_CREAT
13、O_TRUNC
14、O_RDWR,0666))<0)perror("open");elseprintf("openfile:hileo.c%d",fd);lseek(fd,0,SEEK_SET);if((size=read(fd,b,10))<0)per