I've an application running on Windows CE 6.0 that we'll call "foo" that is logging its error and status messages to "foo.log". I've a second application which we'll call "bar" that should open foo.log for reading, seek to the end of the file, make Foo do something that will write output to the log, then look for that output.
The problem is ... Bar doesn't find the new output that Foo has logged, even though File Viewer indicates that the file's size has changed. Calling ReadFile from Bar on the previously opened handle returns 0 bytes when everything else tells me there should be at least another 8K. Am I missing something?