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

In File Monitoring process if one file came and it is processed immediately it does not check if file is open and writing something..Then how to prevent moving of file without closing the file.

share|improve this question
1  
Can you give a little more detail for your problem? Explain what do you mean by File Monitoring process and maybe show some code for what you are trying to solve. – Marcelo Jul 1 '11 at 14:26
@marcelo-hernandez-rishmawy: when file is created in some folder it will be immediately pulls out from that folder, without verifying whether the file is in open and writing something.... – pmad Jul 1 '11 at 14:30
If you are trying to pass messages between applications, why not use a messaging system like JMS? Using files systems to pass information between processes is not simple to get right because filesystems are not designed to do this. – Peter Lawrey Jul 1 '11 at 14:37
At a minimum, you should probably mention what program you are using to do the file monitoring. And if its home grown please post relevant code (in particular, the code that determines when a new file has been posted to the directory being watched). – Perception Jul 1 '11 at 14:53

1 Answer

Do you have control over the program that's putting the files in the directory? Put something like ".partial" on the end of the filename while the file is still being written, and then rename it to remove the ".partial" when the writing is done. If you make the Java file-monitoring program ignore files whose names end in ".partial", it'll only see files after they've been fully written out.

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.