Skip to content

synrc/fs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

bbe4ae9 Β· Apr 1, 2025
Jun 6, 2024
Dec 7, 2020
May 10, 2014
Apr 1, 2025
Mar 8, 2015
Apr 1, 2025
Feb 4, 2021
Oct 21, 2018
Oct 29, 2020
Nov 6, 2019
Apr 1, 2025
Apr 1, 2025
Apr 1, 2025
Apr 1, 2025
Apr 1, 2025

Repository files navigation

FS: Native Listener (Mac Windows Linux)

Actions Status Hex pm

Backends

NOTE: On Linux you need to install inotify-tools.

Subscribe to Notifications

> fs:start_link(fs_watcher, "/Users/5HT/synrc/fs"). % need to start the fs watcher
> fs:subscribe(fs_watcher). % the pid will receive events as messages
> flush().
Shell got {<0.47.0>,
           {fs,file_event},
           {"/Users/5HT/synrc/fs/src/README.md",[closed,modified]}}

List Events from Backend

> fs:known_events(fs_watcher). % returns events known by your backend
[mustscansubdirs,userdropped,kerneldropped,eventidswrapped,
 historydone,rootchanged,mount,unmount,created,removed,
 inodemetamod,renamed,modified,finderinfomod,changeowner,
 xattrmod,isfile,isdir,issymlink,ownevent]

Sample Subscriber

> fs:start_looper(). % starts a sample process that logs events
=INFO REPORT==== 28-Aug-2013::19:36:26 ===
file_event: "/tank/proger/erlfsmon/src/4913" [closed,modified]

Credits

  • Vladimir Kirillov
  • Maxim Sokhatsky
  • Dominic Letz

OM A HUM