I'm trying to get two different apps to communicate through a file. I would like app 1 to append some text to a file, and app 2 to notice, and read the new bytes (not the whole file).
There is an event, ProgressEvent.PROGRESS, that is supposed to fire when new data is available on a FileStream, but it only fires when I first open the file.
Basically, I would like to leave the FileStream open, listening like a socket on the end of that file for changes. Is it possible? Any performance considerations?
Thanks1