Happy !
ronsaldo / OSCalls
About OSCalls
Operating system calls low level access and abstraction layers.
This also provides the FileSystemMonitor API. For loading the FileSystemMonitor API, the following script can be used, in Pharo 6:
Gofer new
smalltalkhubUser: 'ronsaldo' project: 'OSCalls';
package: 'ConfigurationOfFileSystemMonitor';
load.
(Smalltalk at: #ConfigurationOfFileSystemMonitor) load.
In Pharo 5, an updated version of the UnifiedFFI is required. For updating the UnifiedFFI and loading the FileSystemMonitor API, the following script is required:
Gofer new
smalltalkhubUser: 'Pharo' project: 'FFI-NB';
package: 'ConfigurationOfUnifiedFFI';
load.
(Smalltalk at: #ConfigurationOfUnifiedFFI) load.
Gofer new
smalltalkhubUser: 'ronsaldo' project: 'OSCalls';
package: 'ConfigurationOfFileSystemMonitor';
load.
(Smalltalk at: #ConfigurationOfFileSystemMonitor) load.
