LOCKAUTO.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:0k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <stdio.h>
  2. #include <io.h>
  3. #include <share.h>
  4. #include <fcntl.h>
  5. void main(void)
  6.  {
  7.    int handle;
  8.    if ((handle = sopen("\AUTOEXEC.BAT", O_RDONLY, SH_DENYNO)) == -1)
  9.      printf("Error opening AUTOEXEC.BATn");
  10.    else
  11.     {
  12.       lock(handle, 0L, 5L);
  13.       printf("File locked--press Enter to continuen");
  14.       getchar();
  15.       close(handle);
  16.     }
  17.  }