Lines Matching refs:_path
149 self._path = path
158 log('Planning to remove %s: %s', filesystem_type, self._path)
160 log('Removing %s: %s', filesystem_type, self._path)
163 os.remove(self._path)
170 self._path = path
174 logging.warn('Planning to remove directory: %s', self._path)
176 logging.warn('Removing directory: %s', self._path)
182 subprocess.check_call(['rd', '/q', '/s', self._path], shell=True)
184 shutil.rmtree(self._path)
191 self._path = path
195 os.makedirs(self._path)