的
stat()和
fstat()功能检索
struct stat,其包括部件
st_mode指示文件模式,其中权限存储。
您可以将此值传递给
chmod()或
fchmod()屏蔽掉非文件权限位:
struct stat st;if (stat(file1, &st)){ perror("stat");} else{ if (chmod(file2, st.st_mode & 07777)) { perror("chmod"); }}
欢迎分享,转载请注明来源:内存溢出
的
stat()和
fstat()功能检索
struct stat,其包括部件
st_mode指示文件模式,其中权限存储。
您可以将此值传递给
chmod()或
fchmod()屏蔽掉非文件权限位:
struct stat st;if (stat(file1, &st)){ perror("stat");} else{ if (chmod(file2, st.st_mode & 07777)) { perror("chmod"); }}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)