Class representing a Cedar Backup collect directory.
As with all of the other classes that represent configuration
sections, all of these values are optional. It is up to some
higher-level construct to decide whether everything they need is filled
in. Some validation is done on non-None
assignments
through the use of the Python property()
construct.
The following restrictions exist on data in this class:
|
__init__(self,
absolutePath=None,
collectMode=None,
archiveMode=None,
ignoreFile=None,
absoluteExcludePaths=None,
relativeExcludePaths=None,
excludePatterns=None)
Constructor for the CollectDir class. |
source code
|
|
|
|
|
|
|
|
|
|
|
_getAbsolutePath(self)
Property target used to get the absolute path. |
source code
|
|
|
|
|
_getCollectMode(self)
Property target used to get the collect mode. |
source code
|
|
|
|
|
_getArchiveMode(self)
Property target used to get the archive mode. |
source code
|
|
|
|
|
_getIgnoreFile(self)
Property target used to get the ignore file. |
source code
|
|
|
|
|
_getAbsoluteExcludePaths(self)
Property target used to get the absolute exclude paths list. |
source code
|
|
|
|
|
_getRelativeExcludePaths(self)
Property target used to get the relative exclude paths list. |
source code
|
|
|
_setExcludePatterns(self,
value)
Property target used to set the exclude patterns list. |
source code
|
|
|
_getExcludePatterns(self)
Property target used to get the exclude patterns list. |
source code
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__
|