CreateFile 独占打开文件

小唐,独占打开文件,其它文件再也无法打开,实现代码如下


#include <windows.h>
int main(int argc, char* argv[])
{
	HANDLE file_handle;
	file_handle = CreateFile(".\\xxoo.exe",
		GENERIC_READ,
		0,
		NULL,
		OPEN_EXISTING,
		NULL,
		NULL);
	printf("1.GetLastError=%d\n",GetLastError());
	
	printf("Hello World!  file_handle=%p\n",file_handle);
	getchar();
	//CloseHandle(file_handle);
	return 0;
}


你可能感兴趣的:(CreateFile 独占打开文件)