複製鏈接
請複製以下鏈接發送給好友

sopen

鎖定
sopen是一個計算機函數功能是打開一共享文件
中文名
sopen
性    質
函數名
功 能
打開一共享文件
用 法
int sopen
程序例:
#include <io.h>
#include <fcntl.h>
#include <sys\stat.h>
#include <process.h>
#include <share.h>
#include <stdio.h>
int main(void)
{
int handle;
int status;
if (!handle)
{
printf("sopen failed\n");
exit(1);
}
status = access("c:\\autoexec.bat", 6);
if (status == 0)
printf("read/write access allowed\n");
else
printf("read/write access not allowed\n");
close(handle);
return 0;
}