Who is accessing a particular directory? There’s a Linux command called fuser which will tell you who’s running processes in that directory.

<pre lang="bash">
fuser /etc/apache/
fuser /home/john/

Verbose.

<pre lang="bash">
fuser /data/exports/ -v

Check out the fuser man page.