Search:

Type: Posts; User: xero976

Search: Search took 0.01 seconds.

  1. Replies
    13
    Views
    2,445

    Create driver

    Build a minispy driver.

    1. Download and install windows driver kit. WDK Windows Driver Kit | Overview for Driver Developers

    2. click START/ All Programs/Windows Driver Kit/ WDK../Build...
  2. Replies
    13
    Views
    2,445

    I used a file system filter driver. Installed the...

    I used a file system filter driver. Installed the driver minispy (had to disable windows signature enforcement), launched the .exe that talks to the driver which listens for all files being queried,...
  3. Replies
    13
    Views
    2,445

    Re

    Yes I'm going through filemon now and hopefully get something good from that. I'll let you guys know when I find a solution.
  4. Replies
    13
    Views
    2,445

    RE:

    I gave ReadDirectoryChangesW() a shot to no avil. Here is the source code for the method. Although it does detect changes, it will NOT detect if a file has been opened.



    wstring s2ws(const...
  5. Replies
    13
    Views
    2,445

    Ill give it a shot. Right now im looking at NTFS....

    Ill give it a shot. Right now im looking at NTFS.

    Chris
  6. Replies
    13
    Views
    2,445

    no one has any ideas still? Anyone try File...

    no one has any ideas still? Anyone try File Filter Drivers?

    Chris
  7. Replies
    13
    Views
    2,445

    Also

    I have also now tried:



    while(true)
    {
    struct stat stResult;
    stat("c:\practiceFileRead.txt",&stResult);
    Console::WriteLine("last time : {0}",stResult.st_atime);...
  8. Replies
    13
    Views
    2,445

    fileHasBeenRead()

    I am working on a system file monitoring tool. I need to be able to tell what files have/are being read (keyword is READ not modified). Things I have tried:



    bool isFileOpen(string inputFile){...
Results 1 to 8 of 8