LockFile API采用文件句柄。我通常使用TStream进行文件访问,所以我不确定如何获得适当的句柄,仅给出一个ANSIString文件名。我的目的是在进程中锁定文件(最初可能不存在),将一些信息写入其他用户,然后解锁并删除它。
我希望示例代码或指向它以使其可靠。
答案 0 :(得分:7)
您可以将 LockFile 功能与CreateFile和 UnlockFile 功能结合使用。
参见此示例
procedure TFrmMain.Button1Click(Sender: TObject);
var
aHandle : THandle;
aFileSize : Integer;
aFileName : String;
begin
aFileName :='C:\myfolder\myfile.ext';
aHandle := CreateFile(PChar(aFileName),GENERIC_READ, 0, nil, OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,0); // get the handle of the file
try
aFileSize := GetFileSize(aHandle,nil); //get the file size for use in the lockfile function
Win32Check(LockFile(aHandle,0,0,aFileSize,0)); //lock the file
//your code
//
//
//
Win32Check(UnlockFile(aHandle,0,0,aFileSize,0));//unlock the file
finally
CloseHandle(aHandle);//Close the handle of the file.
end;
end;
另一个选项,如果你想使用TFileStream锁定文件,可以使用独占访问权限打开文件(fmShareExclusive)。
Var
MyStream :TFilestream;
begin
MyStream := TFilestream.Create( aFileName, fmOpenRead or fmShareExclusive );
end;
注意:在两个示例中,访问权限都是只读的,您必须更改标志才能写入文件。
答案 1 :(得分:6)
答案 2 :(得分:3)
另一种选择是创建具有独占读/写访问权限的文件流:
fMask := fmOpenReadWrite or fmShareExclusive;
if not FileExists(Filename) then
fMask := fMask or fmCreate;
fstm := tFileStream.Create(Filename,fMask);
答案 3 :(得分:0)