⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 setfattr.gml

📁 开放源码的编译器open watcom 1.6.0版的源代码
💻 GML
字号:
.func _dos_setfileattr
#include <&doshdr>
unsigned _dos_setfileattr( const char *path,
                           unsigned attributes );
.ixfunc2 '&DosFunc' &func
.funcend
.desc begin
The &func function uses system call 0x43 to set the attributes
of the file or directory that
.arg path
points to.
The possible attributes are:
.im dosattr
.desc end
.return begin
The &func function returns zero if successful.
Otherwise, it returns an OS error code and sets
.kw errno
accordingly.
.return end
.see begin
.seelist _dos_setfileattr _dos_getfileattr
.see end
.exmp begin
#include <stdio.h>
#include <&doshdr>
.exmp break
print_attribute()
  {
    unsigned attribute;
.exmp break
    _dos_getfileattr( "file", &attribute );
    printf( "File attribute is %x\n", attribute );
    if( attribute & _A_RDONLY ) {
        printf( "This is a read-only file\n" );
    } else {
        printf( "This is not a read-only file\n" );
    }
  }
.exmp break
void main()
  {
    int      &fd;
.exmp break
    if( _dos_creat( "file", _A_RDONLY, &amp.&fd ) != 0 ){
      printf( "Error creating file\n" );
    }
    print_attribute();
    _dos_setfileattr( "file", _A_NORMAL );
    print_attribute();
    _dos_close( &fd );
  }
.exmp end
.class DOS
.system

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -