fileunlock

Unlocks the specified file.

fileunlock <file handle>

Remarks

Unlocks the specified whole file. Unlocking a file enables other processes to access the file.

If the function succeeds, the result variable is 0.
If the function fails, the result variable is 1.

Examples

fileopen fhandle 'test.txt' 0
filelock fhandle
if result!=0 then
	messagebox 'error' 'hoge'
endif
filewrite fhandle 'sample'
pause 60
fileunlock fhandle
if result!=0 then
	messagebox 'error' 'hoge'
endif
fileclose fhandle

See also