Hey, I am writing a script that will be polling a directory looking for new files, will I need to do some sort of error checking to make sure the files are completely written(i.e. I don't want to work with a file before it's completely done being written on the disk, but the info I want from the file is near the beginning, so I may be able to pull the data I need without realizing the file isn't done being written)? Or will the file be locked because the OS is writing to the hard drive?
This is on linux btw.