源码地带 > 电路图 > 电子资料下载 > 实用工具 >C > 查看压缩包源码

C

源代码在线查看: tellattr.c

软件大小: 44597 K
上传用户: shkuosi316
关键词:
下载地址: 免注册下载 普通下载 VIP

相关代码

				#include 
				#include 
				#include 
				
				void main(int argc, char *argv[])
				 {
				   int attributes;
				
				   if ((attributes = _chmod(argv[1], 0)) == -1)
				     printf("Error accessing %s\n", argv[1]);
				   else
				     {
				         if (attributes & FA_ARCH)
				           printf("Archive ");
				
				         if (attributes & FA_DIREC)
				           printf("Directory ");
				         
				         if (attributes & FA_HIDDEN)
				           printf("Hidden ");
				         
				         if (attributes & FA_LABEL)
				           printf("Volume label ");
				         
				         if (attributes & FA_RDONLY)
				           printf("Readonly ");
				
				         if (attributes & FA_SYSTEM)
				           printf("System ");
				     }
				 }
							

相关资源