函数名:chmod
头文件:<io.h>
函数原型: int chmod(const char *file,int auth);
功能:用于改变文件访问方式
参数:const char *file 为要修改的文件名 , int auth 为要修改的权限,其值为S_IREAD,S_IWRITE或S_IEXEC
返回值:成功 返回0 , 失败 返回-1
程序例:将指定的文件修改为只读模式
#include<stdio.h>#include<io.h>#include<sys/stat.h>voidmake_read_only(char*filename);intmain(void){make_read_only(D:\a.txt);make_read_only(MYFILE.FIL);return0;}voidmake_read_only(char*filename){intstat=chmod(filename,S_IREAD);if(stat)printf(Couldn'tmake%sread-onlyn,filename);elseprintf(Made%sread-onlyn,filename);}
运行结果:
Couldn'tmakeD:a.txtread-onlyCouldn'tmakeMYFILE.FILread-only