Changeset 104872 in vbox for trunk/src/VBox/ValidationKit/common/utils.py
- Timestamp:
- Jun 10, 2024 9:22:12 AM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/common/utils.py
r104532 r104872 2336 2336 # Just make sure the user (we) got full access to dirs. Don't bother getting it 100% right. 2337 2337 oTarInfo.mode |= 0x1c0; # (octal: 0700) 2338 oTarFile.extract(oTarInfo, sDstDir); 2338 if hasattr(tarfile, 'tar_filter'): 2339 oTarFile.extract(oTarInfo, sDstDir, filter = 'tar'); 2340 else: 2341 oTarFile.extract(oTarInfo, sDstDir); 2339 2342 asMembers.append(os.path.join(sDstDir, oTarInfo.name.replace('/', os.path.sep))); 2340 2343 except Exception as oXcpt:
Note:
See TracChangeset
for help on using the changeset viewer.