0

I have two machines:

(Both machines are in same network)

  1. Linux machine (ubuntu 16.04), and
  2. Windows machine (Win 7)

I need to create a watch on directory of windows machine and when any file or directory created (required for recursive directories) then the notification sends to the Linux machine that what changes are done.

I have tried with the python library:

https://github.com/rvoicilas/inotify-tools

But it having bug that it's not working for the recursive directory and might not support in windows.

Cœur
  • 34,719
  • 24
  • 185
  • 251
Jeenit khatri
  • 308
  • 4
  • 19

1 Answers1

1

I've had the same problem and solved it by just polling for files and directories with a modification date set after the last poll.

Jacques de Hooge
  • 6,497
  • 2
  • 20
  • 39