List of all members.
Detailed Description
Small class for temporary directories.
When instantiated, it creates a temporary directory and the instance
behaves as the string containing the directory name.
When the instance goes out of scope, it removes all the content of
the temporary directory (automatic clean-up).
Definition at line 155 of file GaudiTest.py.
Constructor & Destructor Documentation
| def GaudiTest::TempDir::__init__ |
( |
|
self, |
|
|
|
keep = False, |
|
|
|
chdir = False |
|
) |
| |
Definition at line 162 of file GaudiTest.py.
00163 :
00164 self.name = tempfile.mkdtemp()
00165 self._keep = keep
00166 self._origdir = None
00167 if chdir:
00168 self._origdir = os.getcwd()
00169 os.chdir(self.name)
| def GaudiTest::TempDir::__del__ |
( |
|
self ) |
|
Definition at line 173 of file GaudiTest.py.
00174 :
00175 if self._origdir:
00176 os.chdir(self._origdir)
00177 if self.name and not self._keep:
00178 shutil.rmtree(self.name)
Member Function Documentation
| def GaudiTest::TempDir::__getattr__ |
( |
|
self, |
|
|
|
attr |
|
) |
| |
Definition at line 179 of file GaudiTest.py.
00180 :
00181 return getattr(self.name,attr)
| def GaudiTest::TempDir::__str__ |
( |
|
self ) |
|
Definition at line 170 of file GaudiTest.py.
00171 :
00172 return self.name
Member Data Documentation
The documentation for this class was generated from the following file:
- /afs/cern.ch/sw/Gaudi/releases/GAUDI/GAUDI_v23r2/GaudiPolicy/qmtest_classes/GaudiTest.py