?? tellattr.c
字號:
#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 ");
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -