Class representing a Cedar Backup collect configuration.
|
__init__(self,
targetDir=None,
collectMode=None,
archiveMode=None,
ignoreFile=None,
absoluteExcludePaths=None,
excludePatterns=None,
collectFiles=None,
collectDirs=None)
Constructor for the CollectConfig class. |
source code
|
|
|
|
|
|
|
|
|
__eq__(self,
other)
Equals operator, implemented in terms of original Python 2 compare
operator. |
source code
|
|
|
__lt__(self,
other)
Less-than operator, implemented in terms of original Python 2 compare
operator. |
source code
|
|
|
__gt__(self,
other)
Greater-than operator, implemented in terms of original Python 2
compare operator. |
source code
|
|
|
|
|
_getTargetDir(self)
Property target used to get the target directory. |
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
|
|
|
_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
|
|
|
|
|
_getCollectFiles(self)
Property target used to get the collect files list. |
source code
|
|
|
|
|
_getCollectDirs(self)
Property target used to get the collect dirs list. |
source code
|
|
|
|
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__ ,
__subclasshook__
|