Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
FSEvents.PathsBeingWatched
Queries the paths being watched.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
FSEvents | 5.4 | ✅ Yes | ❌ No | ❌ No | ✅ Yes, on macOS | ❌ No |
MBS( "FSEvents.PathsBeingWatched"; FSEventsRef ) More
Parameters
Parameter | Description | Example |
---|---|---|
FSEventsRef | The reference number for this FSEvents object. | $fstream |
Result
Returns path list or error.
Description
Queries the paths being watched.Examples
Query paths being watched:
Delete All Records [No dialog]
Set Variable [$path; Value:MBS( "Folders.UserDesktop" )]
Set Variable [$sinceWhen; Value:"now"]
If [not IsEmpty(FSEvents::LastID)]
Set Variable [$sinceWhen; Value:FSEvents::LastID]
End If
Set Variable [$fstream; Value:MBS("FSEvents.Create"; $path; $sinceWhen; "IgnoreSelf, FileEvents, WatchRoot"; 2)]
If [MBS("IsError")]
Show Custom Dialog ["Error"; "Failed to create file system event monitor."]
Else
Show Custom Dialog ["Paths"; MBS( "FSEvents.PathsBeingWatched"; $fstream )]
....
End If
See also
This function is free to use.
Created 18th November 2015, last changed 13th March 2016