输入banner图图片脚本导航/分类

Linux access

  • #include <stdlib.h> 
  • #include <unistd.h> 
  • #include <fcntl.h> 
  •  
  • int main() 
  •     if((access("test.c",F_OK))!=-1) 
  •     { 
  •         printf("文件 test.c 存在. "); 
  •     } 
  •     else 
  •     { 
  •         printf("test.c 不存在! "); 
  •     } 
  •  
  •     if(access("test.c",R_OK)!=-1) 
  •     { 
  •         printf("test.c 有可读权限"); 
  •     } 
  •     else 
  •     { 
  •         printf("test.c 不可读. "); 
  •     } 
  •  
  •     if(access("test.c",W_OK)!=-1) 
  •     { 
  •         printf("test.c 有可写权限"); 
  •     } 
  •     else 
  •     { 
  •         printf("test.c 不可写. "); 
  •     } 
  •     if(access("test.c",X_OK)!=-1) 
  •     { 
  •         printf("test.c 有可执行权限"); 
  •     } 
  •     else 
  •     { 
  •         printf("test.c 不可执行. "); 
  •     } 
  •  
  •     return 0; 
  • Linux access

    标签: