Browse Source

wip

test_fixup
Richard Young 3 years ago
parent
commit
08704fd4eb
1 changed files with 16 additions and 1 deletions
  1. +16
    -1
      libarchive/__init__.py

+ 16
- 1
libarchive/__init__.py View File

@@ -29,6 +29,8 @@ import sys
import time
import warnings

from ctypes import cdll, c_char_p

from libarchive import _libarchive
from io import StringIO

@@ -295,7 +297,7 @@ class EntryWriteStream(object):

class Entry(object):
'''An entry within an archive. Represents the header data and it's location within the archive.'''
def __init__(self, pathname=None, size=None, mtime=None, mode=None, hpos=None, encoding=ENCODING):
def __init__(self, pathname=None, size=None, mtime=None, mode=None, hpos=None, encoding=ENCODING, symlink=None):
self.pathname = pathname
self.size = size
self.mtime = mtime
@@ -303,6 +305,11 @@ class Entry(object):
self.hpos = hpos
self.encoding = encoding

if self.issym():
self.symlink = symlink
else:
self.symlink = None

@property
def header_position(self):
return self.hpos
@@ -328,6 +335,14 @@ class Entry(object):
mode=mode,
hpos=archive.header_position,
)

symLinkPath = ""

if entry.issym():
libarchive.archive_entry_copy_symlink(e, symLinkPath)

print(symLinkPath)

finally:
_libarchive.archive_entry_free(e)
return entry


Loading…
Cancel
Save