c
来自「C程序设计经典900例.zip」· 代码 · 共 32 行
TXT
32 行
#include <stdio.h>
#include <dos.h>
#include <io.h>
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 ");
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?