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.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
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. |
|||
|
|