Re: How to use file system watcher (fsmonitor) in Nim?

2020-04-24 Thread dom96
Depends on an external dylib though, would be nice to have a native Nim implementation, it shouldn't be hard to implement either, someone just needs to commit some time.

Re: How to use file system watcher (fsmonitor) in Nim?

2020-04-24 Thread timothee
finally found a nim package that works on OSX, see also a comparison: [https://github.com/paul-nameless/nim-fswatch/issues/1](https://github.com/paul-nameless/nim-fswatch/issues/1)

Re: How to use file system watcher (fsmonitor) in Nim?

2019-09-15 Thread federico3
Fswatch supports Linux, most BSDs, OSX and Windows [http://emcrisostomo.github.io/fswatch](http://emcrisostomo.github.io/fswatch)/

Re: How to use file system watcher (fsmonitor) in Nim?

2019-09-13 Thread treeform
Cross-platform filesystem event monitor for Nim. Does it do Windows and Mac? Those are my two main systems. I can try fixing it to work there.

Re: How to use file system watcher (fsmonitor) in Nim?

2019-09-11 Thread Vindaar
Apparently there's now a wrapper for libfswatch: [https://github.com/FedericoCeratto/nim-fswatch](https://github.com/FedericoCeratto/nim-fswatch) While no help to you, maybe it's interesting for someone else reading this. I ported over fsmonitor to modern asyncdispatch in February, since I

How to use file system watcher (fsmonitor) in Nim?

2019-09-11 Thread jiyinyiyong
I want to watch files changes too. Do we have a better solution now? I want to run on OS X.