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
  • 37,241
  • 25
  • 195
  • 267
Jeenit khatri
  • 318
  • 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,750
  • 2
  • 28
  • 45