intercept file input and outputs
-
Hi, Is it possible to intercept file input and outputs? Let's say I have a server and on that server I have my own forum controlled by my application ( someone connects to it and my application opens a file and put a value in it, the "someone" want to read a value somewhere then my application read a value). Well I want to write another application which will signal me when a change is made in the mdb file (or other types its not important) and which values were inserted or retrieven? Thank you very much in advance for your answers! Well... I am a beginner ...
-
Hi, Is it possible to intercept file input and outputs? Let's say I have a server and on that server I have my own forum controlled by my application ( someone connects to it and my application opens a file and put a value in it, the "someone" want to read a value somewhere then my application read a value). Well I want to write another application which will signal me when a change is made in the mdb file (or other types its not important) and which values were inserted or retrieven? Thank you very much in advance for your answers! Well... I am a beginner ...
Scolinks wrote: Is it possible to intercept file input and outputs? Yes, but it requires a device driver that watches for all IRPs and FastIO requests. Obviously this is no small undertaking. Scolinks wrote: Well I want to write another application which will signal me when a change is made... This sounds like you simply need to use
ReadDirectoryChangesW()
and/orFindFirstChangeNotification()
.
"When I was born I was so surprised that I didn't talk for a year and a half." - Gracie Allen