I am writing two applications: one to write data to a file and another to read data from a file. These programs will be running at the same time. My fear is that one app might write to the file some data and then the other app tries to read it before it is finished. This may lead to missing data, scrambled data, or crashes.
Not sure what I can do... is there a way to lock the file while in use(set from each app)?
(Note: I will not be using a database.)
I am using VS C++ 6.0... this is one of the companies requirements due to older software.