首页 > 代码库 > 打开并锁定一个文件
打开并锁定一个文件
var aHandle : THandle; aFileSize : Integer; aFileName : String;procedure TForm1.Button3Click(Sender: TObject);begin aFileName := ‘C:\101\Java_new.pdf‘; aHandle := CreateFile(PChar(aFileName),GENERIC_READ, 0, nil, OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,0); // get the handle of the file aFileSize := GetFileSize(aHandle,nil); //get the file size for use in the lockfile function Win32Check(LockFile(aHandle,0,0,aFileSize,0)); //lock the fileend;procedure TForm1.Button4Click(Sender: TObject);begin Win32Check(UnlockFile(aHandle,0,0,aFileSize,0));//unlock the file CloseHandle(aHandle);//Close the handle of the file.end;
http://stackoverflow.com/questions/1916084/how-do-i-get-the-handle-for-locking-a-file-in-delphi
打开并锁定一个文件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。