Create a small monitoring process that will periodically register who is currently accessing the file.
You can write a small script using the fuser. Is a short example here (for improvement)
#!/bin/bash
log=~/file-access.log
while true
do
fuser your_file >> $log
sleep 0.2s
done
, , .