The wx.FileSystemWatcher class allows receiving notifications of file system changes.
For the full list of change types that are reported see FSWFlags.
This class notifies the application about the file system changes by sending events of wx.FileSystemWatcherEvent class. By default these events are sent to the wx.FileSystemWatcher object itself so you can derive from it and use the event table EVT_FSWATCHER
macro to handle these events in a derived class method. Alternatively, you can use wx.FileSystemWatcher.SetOwner
to send the events to another object. Or you could use wx.EvtHandler.Bind
with wxEVT_FSWATCHER
to handle these events in any other object. See the fswatcher sample for an example of the latter approach.
New in version 2.9.1.
Note
Implementation limitations: this class is currently implemented for MSW, macOS and GTK ports but doesn’t detect all changes correctly everywhere: under MSW accessing the file is not detected (only modifying it is) and under macOS neither accessing nor modifying is detected (only creating and deleting files is). Moreover, macOS version doesn’t currently collapse pairs of create/delete events in a rename event, unlike the other ones.
Note
The application’s event loop needs to be running before a wx.FileSystemWatcher can be properly created, and that is why one should not be created too early during application startup. If you intend to create a wx.FileSystemWatcher at startup, you can override wx.AppConsole.OnEventLoopEnter
to ensure it is not done too early.
Default constructor. |
|
Adds path to currently watched files. |
|
This is the same as |
|
Retrieves all watched paths and places them in paths. |
|
Returns the number of currently watched paths. |
|
Removes path from the list of watched paths. |
|
Clears the list of currently watched paths. |
|
This is the same as |
|
Associates the file system watcher with the given handler object. |
wx.
FileSystemWatcher
(EvtHandler)¶Possible constructors:
FileSystemWatcher()
The FileSystemWatcher class allows receiving notifications of file system changes.
__init__
(self)¶Default constructor.
Add
(self, path, events=FSW_EVENT_ALL)¶Adds path to currently watched files.
The path argument can currently only be a directory and any changes to this directory itself or its immediate children will generate the events. Use AddTree
to monitor the directory recursively.
Note that on platforms that use symbolic links, you should consider the possibility that path is a symlink. To watch the symlink itself and not its target you may call FileName.DontFollowLink
on path.
path (string) – The name of the path to watch.
events (int) – An optional filter to receive only events of particular types. This is currently implemented only for GTK.
bool
AddTree
(self, path, events=FSW_EVENT_ALL, filter="")¶This is the same as Add
, but also recursively adds every file/directory in the tree rooted at path.
Additionally a file mask can be specified to include only files matching that particular mask.
This method is implemented efficiently on MSW and macOS, but should be used with care on other platforms for directories with lots of children (e.g. the root directory) as it calls Add
for each subdirectory, potentially creating a lot of watches and taking a long time to execute.
Note that on platforms that use symbolic links, you will probably want to have called FileName.DontFollowLink
on path. This is especially important if the symlink targets may themselves be watched.
path (string) –
events (int) –
filter (string) –
bool
GetWatchedPaths
(self, paths)¶Retrieves all watched paths and places them in paths.
Returns the number of watched paths, which is also the number of entries added to paths.
paths (list of strings) –
int
GetWatchedPathsCount
(self)¶Returns the number of currently watched paths.
int
See also
Remove
(self, path)¶Removes path from the list of watched paths.
See the comment in Add
about symbolic links. path should treat symbolic links in the same way as in the original Add
call.
path (string) –
bool
RemoveAll
(self)¶Clears the list of currently watched paths.
bool
RemoveTree
(self, path)¶This is the same as Remove
, but also removes every file/directory belonging to the tree rooted at path.
See the comment in AddTree
about symbolic links. path should treat symbolic links in the same way as in the original AddTree
call.
path (string) –
bool
SetOwner
(self, handler)¶Associates the file system watcher with the given handler object.
All the events generated by this object will be passed to the specified owner.
handler (wx.EvtHandler) –
WatchedPathsCount
¶