I have CIFS mounted folder on my PC, where houses a PHP project. And very often dialog box appears with the message:
Project file /path/to/mounted/directory/.idea/workspace.xml" has been changed externally. It is recommended to reload project for changes to take effect.
I don't make any changes in this file, but PhpStorm thinks sometimes that file was changed and shows this dialog.
This directory mounts on system startup, and this is the corresponding fstab string:
//host/path /media/server cifs _netdev,credentials=/home/user/.smbcredentials,iocharset=utf8,sec=ntlm,uid=1000,gid=1000 0 0
This mount settings I've made today. Before that the directory was mounted through sshfs and all was OK without this annoying dialog box.
How can I resolve this problem?