2022年编写文件工具 .pdf
《2022年编写文件工具 .pdf》由会员分享,可在线阅读,更多相关《2022年编写文件工具 .pdf(4页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、#include #include #include #include #include intsetfile() intfd; char file100; printf( 请输入你要创建的文件名称:); scanf(%s,file); fd = open(file,O_WRONLY|O_TRUNC|O_CREAT,0666);/创建文件 file return(1); intwritefile() intfd; char file100; printf( 请输入你要写入的文件名称:); scanf(%s,file); fd = open(file,O_WRONLY);/ 以只写方式打开文件w
2、rite(fd,I am student.n,13);/ return(1); intreadfile() intfd; char c; char file100; printf( 请输入你要读取的文件名称:); scanf(%s,file); fd = open(file,O_RDONLY);/ 以只读的方式打开文件lseek(fd,0,SEEK_SET);/移动指针到第 0 个字符while(read(fd,&c,1)=1) putchar(c); printf(n); return(1); intmodifyAuthority() intfd; char file100; char au
3、thority20; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 4 页 - - - - - - - - - printf( 请输入你要修改权限的文件名称:); scanf(%s,file); printf( 请输入你要修改的文件权限(如 O_RDONLY 为只读 ):); scanf(%s,authority); fd = chmod(file, authority);/ 修改文件权限if (fd) printf( 不能修改文件%s 属性为 %sn, file, a
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 2022年编写文件工具 2022 编写 文件 工具
限制150内