Description
In DAEMON-222 changed were made to prevent unnecessary change events (a child item changing for example) on a folder bubbling up, which had the side-effect of causing any change events to not fire for a folder on Windows. The current solutions for tracking information through fs.Stats is lightweight on Windows a potential native module (
https://github.com/xxoo/node-fswin) was found but the heaviness of using this module wasn't wanted. This is more than likely going to need to be sovled in the future
It's probable that issues relating to permissions will be prevalent on unixy systems too
Steps to repro
TODO
https://github.com/appcelerator/appc-daemon/pull/302
To test: 1. Create a file called
fstest.js
in theappc-daemon\packages\appcd-fswatcher
directory:2. Create a
Desktop\foo\bar
directory. 3. Runnode fstest.js
4. In Windows Explorer, right click thefoo
directory and go to Properties, then click on the Security tab. Click the Edit button and select your user from the list. Start twiddling permissions and clicking the Apply button as you watch the events being emitted.