My problem is this: I’m using a WatchService to get notified about new files in a specific folder, now if a file gets moved/copied or created in said folder an event gets triggered and the name of the new file gets returned. The problem now is, if I try to access the file and it is not fully there yet (e.g. the copy is still in progress) an exception gets raised. What i tried was to do something like this:
RandomAccessFile raf = new RandomAccessFile(fileName, "rw");
FileChannel fc = raf.getChannel();
FileLock lck = fc.lock();
But even if a lock gets acquired, sometimes still an Exception gets raised if I try to write to the file because another process has still an open handle to it.
Now, how can a file in Java be locked for truly exclusive access?
For me, the statement
returns a FileNotFoundException if I cannot acquire a lock on the file. I catch the filenotfound exception and treat it…
you could run this in a loop and wait until you get a lock on the file. Wouldn’t the line
never reach if the file is locked? You will get a FileNotFoundException thrown..