Best Python code snippet using avocado_python
archive.py
Source:archive.py  
...131        :param path: destination path.132        """133        self._engine.extractall(path)134        if self.is_zip:135            self._update_zip_extra_attrs(path)136    def _update_zip_extra_attrs(self, dst_dir):137        if platform.system() != "Linux":138            LOG.warn("Attr handling in zip files only supported on Linux.")139            return140        # Walk all files and re-create files as symlinks141        for path, info in self._engine.NameToInfo.iteritems():142            dst = os.path.join(dst_dir, path)143            if not os.path.exists(dst):144                LOG.warn("One or more files in the ZIP archive '%s' could "145                         "not be found after extraction. Their paths are "146                         "probably stored in unsupported format and their "147                         "attributes are not going to be updated",148                         self.filename)149                return150            attr = info.external_attr >> 16...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
