Trees | Index | Help |
|
---|
Module pyinotify :: Class EventsCodes |
|
object
--+
|
EventsCodes
Method Summary | |
---|---|
str or None |
Return the event name associated to the mask parameter, never return IN_ISDIR. (Static method) |
Inherited from object | |
x.__init__(...) initializes x; see x.__class__.__doc__ for signature | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
helper for pickle | |
helper for pickle | |
x.__repr__() <==> repr(x) | |
x.__setattr__('name', value) <==> x.name = value | |
x.__str__() <==> str(x) |
Class Variable Summary | |
---|---|
int | ALL_EVENTS : Alias for considering all of the events. |
int | IN_ACCESS : File was accessed. |
int | IN_ATTRIB : Metadata changed. |
int | IN_CLOSE_NOWRITE : Unwrittable file closed. |
int | IN_CLOSE_WRITE : Writtable file was closed. |
int | IN_CREATE : Subfile was created. |
int | IN_DELETE : Subfile was deleted. |
int | IN_DELETE_SELF : Self (watched item itself) was deleted. |
int | IN_DONT_FOLLOW : don't follow a symlink (new in kernel 2.6.15). |
int | IN_IGNORED : File was ignored. |
int | IN_ISDIR : Event occurred against dir. |
int | IN_MASK_ADD : add to the mask of an already existing watch (new in kernel
2.6.14). |
int | IN_MODIFY : File was modified. |
int | IN_MOVE_SELF : Self (watched item itself) was moved. |
int | IN_MOVED_FROM : File was moved from X. |
int | IN_MOVED_TO : File was moved to Y. |
int | IN_ONESHOT : Only send event once. |
int | IN_ONLYDIR : only watch the path if it is a directory (new in kernel 2.6.15). |
int | IN_OPEN : File was opened. |
int | IN_Q_OVERFLOW : Event queued overflowed. |
int | IN_UNMOUNT : Backing fs was unmounted. |
Static Method Details |
---|
_get_event_name(mask)Return the event name associated to the mask parameter, never return IN_ISDIR. Only one event is returned, because only one event is raised once at a time.
|
Class Variable Details |
---|
ALL_EVENTSAlias for considering all of the events.
|
IN_ACCESSFile was accessed.
|
IN_ATTRIBMetadata changed.
|
IN_CLOSE_NOWRITEUnwrittable file closed.
|
IN_CLOSE_WRITEWrittable file was closed.
|
IN_CREATESubfile was created.
|
IN_DELETESubfile was deleted.
|
IN_DELETE_SELFSelf (watched item itself) was deleted.
|
IN_DONT_FOLLOWdon't follow a symlink (new in kernel 2.6.15). IN_ONLYDIR we can make sure that we don't watch the target of symlinks.
|
IN_IGNOREDFile was ignored.
|
IN_ISDIREvent occurred against dir.
|
IN_MASK_ADDadd to the mask of an already existing watch (new in kernel 2.6.14).
|
IN_MODIFYFile was modified.
|
IN_MOVE_SELFSelf (watched item itself) was moved.
|
IN_MOVED_FROMFile was moved from X.
|
IN_MOVED_TOFile was moved to Y.
|
IN_ONESHOTOnly send event once.
|
IN_ONLYDIRonly watch the path if it is a directory (new in kernel 2.6.15).
|
IN_OPENFile was opened.
|
IN_Q_OVERFLOWEvent queued overflowed.
|
IN_UNMOUNTBacking fs was unmounted.
|
Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Sat Feb 17 02:40:18 2007 | http://epydoc.sf.net |