Writing a Mini-Filter Device Driver in Windows

220 Views Asked by At

I want to implement a Mini-Filter Driver in Windows that does the following:

  1. Whenever a file is open, it needs to print the name of it.
  2. If the name of a file is "testme.txt" then try to find a string "hello" in it. If it is found, then the operation needs to fail, otherwise it should print "testme.txt is clean”.

Can anyone help me to apply these requirements to write a program that fulfills these requirements?

0

There are 0 best solutions below