Alright,
What I am trying to do is notify my program as soon as the other application is done writing. What I'm doing is writing the file to a .temp file and rename it (to a .dat file) once it's done writing.
Using the java WatchService I'm watching the directory to which I'm writing the file. after renaming the file the code for ENTRY_MODIFY does get called. The problem is though that the filename is still the old .temp file, like it was before renaming it. Please see my code below:
File finished = new File("/home/user/Desktop/Harddisk/fractalMapping.temp");
if(finished.exists())
{
//rename the file to a .dat file
finished.renameTo(new File("/home/user/Desktop/Harddisk/fractalMapping" + lvl +".dat"));
}
}
The code for the event:
if (kind == ENTRY_MODIFY)
{
WatchEvent<Path> ev = cast(event);
//Filename is still the .temp file instead of the renamed .dat file
Path filename = ev.context();
Path child = dir.resolve(filename);
rfm.readNotififiedEdges(child);
}
What I need to know is the renamed filename, because the name of this file can differ I can't just hardcode it..
Thanks in advance :)