Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 :)

share|improve this question

1 Answer

Right now as i am also new to the WatchService service, I would say there is a simple way of doing this. In a loop you can continuously try to capture ENTRY_CREATE events after the file rename and then check against the getName() method of the Path extracted from the context to see if you have a new file created with the new name value.

Hope this helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.