As I rebuild a Gradle project in Android studio, it gives me the following error:
Gradle: Execution failed for task ':lib:clean'. Unable to delete directory: /path/to/project/lib/build/exploded-bundles/ComAndroidSupportAppcompatV71901.aar
It turned out that the folder ComAndroidSupportAppcompatV71901.aar
contains a file named .fuse_hidden0000175300000012
(or some other random file). I have googled for that and it seems that it is kind of filesystem link to a file that is marked for deletion but is still in use by some process. As I did lsof of that file, it showed that it is indeed in use... by Android Studio.
Is it somehow possible to tell Android Studio to release that file so it can be deleted?
I am using Android Studio 0.4.2
under Ubuntu 13.10, the filesystem is NTFS.