PHP 8.1.33
Preview: filecmp.py Size: 9.60 KB
/usr/lib64/python3.8/filecmp.py

"""Utilities for comparing files and directories.

Classes:
    dircmp

Functions:
    cmp(f1, f2, shallow=True) -> int
    cmpfiles(a, b, common) -> ([], [], [])
    clear_cache()

"""

import os
import stat
from itertools import filterfalse

__all__ = ['clear_cache', 'cmp', 'dircmp', 'cmpfiles', 'DEFAULT_IGNORES']

_cache = {}
BUFSIZE = 8*1024

DEFAULT_IGNORES = [
    'RCS', 'CVS', 'tags', '.git', '.hg', '.bzr', '_darcs', '__pycache__']

def clear_cache():
    """Clear the filecmp cache."""
    _cache.clear()

def cmp(f1, f2, shallow=True):
    """Compare two files.

    Arguments:

    f1 -- First file name

    f2 -- Second file name

    shallow -- Just check stat signature (do not read the files).
               defaults to True.

    Return value:

    True if the files are the same, False otherwise.

    This function uses a cache for past comparisons and the results,
    with cache entries invalidated if their stat information
    changes.  The cache may be cleared by calling clear_cache().

    """

    s1 = _sig(os.stat(f1))
    s2 = _sig(os.stat(f2))
    if s1[0] != stat.S_IFREG or s2[0] != stat.S_IFREG:
        return False
    if shallow and s1 == s2:
        return True
    if s1[1] != s2[1]:
        return False

    outcome = _cache.get((f1, f2, s1, s2))
    if outcome is None:
        outcome = _do_cmp(f1, f2)
        if len(_cache) > 100:      # limit the maximum size of the cache
            clear_cache()
        _cache[f1, f2, s1, s2] = outcome
    return outcome

def _sig(st):
    return (stat.S_IFMT(st.st_mode),
            st.st_size,
            st.st_mtime)

def _do_cmp(f1, f2):
    bufsize = BUFSIZE
    with open(f1, 'rb') as fp1, open(f2, 'rb') as fp2:
        while True:
            b1 = fp1.read(bufsize)
            b2 = fp2.read(bufsize)
            if b1 != b2:
                return False
            if not b1:
                return True

# Directory comparison class.
#
class dircmp:
    """A class that manages the comparison of 2 directories.

    dircmp(a, b, ignore=None, hide=None)
      A and B are directories.
      IGNORE is a list of names to ignore,
        defaults to DEFAULT_IGNORES.
      HIDE is a list of names to hide,
        defaults to [os.curdir, os.pardir].

    High level usage:
      x = dircmp(dir1, dir2)
      x.report() -> prints a report on the differences between dir1 and dir2
       or
      x.report_partial_closure() -> prints report on differences between dir1
            and dir2, and reports on common immediate subdirectories.
      x.report_full_closure() -> like report_partial_closure,
            but fully recursive.

    Attributes:
     left_list, right_list: The files in dir1 and dir2,
        filtered by hide and ignore.
     common: a list of names in both dir1 and dir2.
     left_only, right_only: names only in dir1, dir2.
     common_dirs: subdirectories in both dir1 and dir2.
     common_files: files in both dir1 and dir2.
     common_funny: names in both dir1 and dir2 where the type differs between
        dir1 and dir2, or the name is not stat-able.
     same_files: list of identical files.
     diff_files: list of filenames which differ.
     funny_files: list of files which could not be compared.
     subdirs: a dictionary of dircmp objects, keyed by names in common_dirs.
     """

    def __init__(self, a, b, ignore=None, hide=None): # Initialize
        self.left = a
        self.right = b
        if hide is None:
            self.hide = [os.curdir, os.pardir] # Names never to be shown
        else:
            self.hide = hide
        if ignore is None:
            self.ignore = DEFAULT_IGNORES
        else:
            self.ignore = ignore

    def phase0(self): # Compare everything except common subdirectories
        self.left_list = _filter(os.listdir(self.left),
                                 self.hide+self.ignore)
        self.right_list = _filter(os.listdir(self.right),
                                  self.hide+self.ignore)
        self.left_list.sort()
        self.right_list.sort()

    def phase1(self): # Compute common names
        a = dict(zip(map(os.path.normcase, self.left_list), self.left_list))
        b = dict(zip(map(os.path.normcase, self.right_list), self.right_list))
        self.common = list(map(a.__getitem__, filter(b.__contains__, a)))
        self.left_only = list(map(a.__getitem__, filterfalse(b.__contains__, a)))
        self.right_only = list(map(b.__getitem__, filterfalse(a.__contains__, b)))

    def phase2(self): # Distinguish files, directories, funnies
        self.common_dirs = []
        self.common_files = []
        self.common_funny = []

        for x in self.common:
            a_path = os.path.join(self.left, x)
            b_path = os.path.join(self.right, x)

            ok = 1
            try:
                a_stat = os.stat(a_path)
            except OSError as why:
                # print('Can\'t stat', a_path, ':', why.args[1])
                ok = 0
            try:
                b_stat = os.stat(b_path)
            except OSError as why:
                # print('Can\'t stat', b_path, ':', why.args[1])
                ok = 0

            if ok:
                a_type = stat.S_IFMT(a_stat.st_mode)
                b_type = stat.S_IFMT(b_stat.st_mode)
                if a_type != b_type:
                    self.common_funny.append(x)
                elif stat.S_ISDIR(a_type):
                    self.common_dirs.append(x)
                elif stat.S_ISREG(a_type):
                    self.common_files.append(x)
                else:
                    self.common_funny.append(x)
            else:
                self.common_funny.append(x)

    def phase3(self): # Find out differences between common files
        xx = cmpfiles(self.left, self.right, self.common_files)
        self.same_files, self.diff_files, self.funny_files = xx

    def phase4(self): # Find out differences between common subdirectories
        # A new dircmp object is created for each common subdirectory,
        # these are stored in a dictionary indexed by filename.
        # The hide and ignore properties are inherited from the parent
        self.subdirs = {}
        for x in self.common_dirs:
            a_x = os.path.join(self.left, x)
            b_x = os.path.join(self.right, x)
            self.subdirs[x]  = dircmp(a_x, b_x, self.ignore, self.hide)

    def phase4_closure(self): # Recursively call phase4() on subdirectories
        self.phase4()
        for sd in self.subdirs.values():
            sd.phase4_closure()

    def report(self): # Print a report on the differences between a and b
        # Output format is purposely lousy
        print('diff', self.left, self.right)
        if self.left_only:
            self.left_only.sort()
            print('Only in', self.left, ':', self.left_only)
        if self.right_only:
            self.right_only.sort()
            print('Only in', self.right, ':', self.right_only)
        if self.same_files:
            self.same_files.sort()
            print('Identical files :', self.same_files)
        if self.diff_files:
            self.diff_files.sort()
            print('Differing files :', self.diff_files)
        if self.funny_files:
            self.funny_files.sort()
            print('Trouble with common files :', self.funny_files)
        if self.common_dirs:
            self.common_dirs.sort()
            print('Common subdirectories :', self.common_dirs)
        if self.common_funny:
            self.common_funny.sort()
            print('Common funny cases :', self.common_funny)

    def report_partial_closure(self): # Print reports on self and on subdirs
        self.report()
        for sd in self.subdirs.values():
            print()
            sd.report()

    def report_full_closure(self): # Report on self and subdirs recursively
        self.report()
        for sd in self.subdirs.values():
            print()
            sd.report_full_closure()

    methodmap = dict(subdirs=phase4,
                     same_files=phase3, diff_files=phase3, funny_files=phase3,
                     common_dirs = phase2, common_files=phase2, common_funny=phase2,
                     common=phase1, left_only=phase1, right_only=phase1,
                     left_list=phase0, right_list=phase0)

    def __getattr__(self, attr):
        if attr not in self.methodmap:
            raise AttributeError(attr)
        self.methodmap[attr](self)
        return getattr(self, attr)

def cmpfiles(a, b, common, shallow=True):
    """Compare common files in two directories.

    a, b -- directory names
    common -- list of file names found in both directories
    shallow -- if true, do comparison based solely on stat() information

    Returns a tuple of three lists:
      files that compare equal
      files that are different
      filenames that aren't regular files.

    """
    res = ([], [], [])
    for x in common:
        ax = os.path.join(a, x)
        bx = os.path.join(b, x)
        res[_cmp(ax, bx, shallow)].append(x)
    return res


# Compare two files.
# Return:
#       0 for equal
#       1 for different
#       2 for funny cases (can't stat, etc.)
#
def _cmp(a, b, sh, abs=abs, cmp=cmp):
    try:
        return not abs(cmp(a, b, sh))
    except OSError:
        return 2


# Return a copy with items that occur in skip removed.
#
def _filter(flist, skip):
    return list(filterfalse(skip.__contains__, flist))


# Demonstration and testing.
#
def demo():
    import sys
    import getopt
    options, args = getopt.getopt(sys.argv[1:], 'r')
    if len(args) != 2:
        raise getopt.GetoptError('need exactly two args', None)
    dd = dircmp(args[0], args[1])
    if ('-r', '') in options:
        dd.report_full_closure()
    else:
        dd.report()

if __name__ == '__main__':
    demo()

Directory Contents

Dirs: 31 × Files: 174

Name Size Perms Modified Actions
asyncio DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
- drwxr-xr-x 2024-03-05 23:45:24
Edit Download
ctypes DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
curses DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
dbm DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
distutils DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
email DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
encodings DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
ensurepip DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
html DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
http DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
importlib DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
json DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
lib2to3 DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
logging DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
sqlite3 DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
tkinter DIR
- drwxr-xr-x 2024-03-05 23:45:13
Edit Download
- drwxr-xr-x 2024-03-05 23:45:13
Edit Download
unittest DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
urllib DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
venv DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
wsgiref DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
xml DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
xmlrpc DIR
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
- drwxr-xr-x 2024-03-05 23:45:16
Edit Download
4.38 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
32.04 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
477 B lrw-r--r-- 2023-06-06 13:32:21
Edit Download
93.76 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
18.78 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
11.06 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
19.62 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
19.90 KB lrwxr-xr-x 2023-06-06 13:32:21
Edit Download
31.30 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
13.63 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
2.16 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
12.26 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
24.25 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
33.14 KB lrwxr-xr-x 2023-10-17 18:02:14
Edit Download
11.81 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
5.31 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
14.51 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
10.37 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
35.81 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
6.18 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
3.97 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
13.36 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
53.10 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
24.41 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
129 B lrw-r--r-- 2023-06-06 13:32:21
Edit Download
8.46 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
6.97 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
6.85 KB lrwxr-xr-x 2023-06-06 13:32:21
Edit Download
3.53 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
15.77 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
48.80 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
86.22 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
320 B lrw-r--r-- 2023-06-06 13:32:21
Edit Download
82.09 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
20.09 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
102.09 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
2.75 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
37.24 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
9.60 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
14.36 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
3.98 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
14.79 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
23.76 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
34.31 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
36.53 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
4.86 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
7.31 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
5.85 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
26.50 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
5.56 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
20.91 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
8.14 KB lrw-r--r-- 2023-10-17 18:02:14
Edit Download
22.34 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
7.67 KB lrw-r--r-- 2023-10-17 18:02:14
Edit Download
52.35 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
3.72 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
10.29 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
115.77 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
3.46 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
69.96 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
945 B lrw-r--r-- 2023-06-06 13:32:21
Edit Download
13.61 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
5.21 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
76.36 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
12.68 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
76.82 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
8.85 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
21.16 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
23.86 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
5.44 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
42.25 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
27.08 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
2.82 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
10.00 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
5.67 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
10.46 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
58.95 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
38.08 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
51.38 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
61.27 KB lrwxr-xr-x 2023-06-06 13:32:21
Edit Download
62.96 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
91.29 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
8.71 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
21.00 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
39.48 KB lrwxr-xr-x 2023-06-06 13:32:21
Edit Download
31.46 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
14.72 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
15.26 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
20.98 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
22.99 KB lrwxr-xr-x 2023-06-06 13:32:21
Edit Download
26.70 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
4.69 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
14.90 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
104.20 KB lrw-r--r-- 2023-10-17 18:12:57
Edit Download
8.01 KB lrw-r--r-- 2023-10-17 18:02:14
Edit Download
11.09 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
7.08 KB lrwxr-xr-x 2023-06-06 13:32:21
Edit Download
28.13 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
15.49 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
5.14 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
6.93 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
11.77 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
6.29 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
1.99 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
18.13 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
8.33 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
13.01 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
50.55 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
2.22 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
21.33 KB lrw-r--r-- 2023-10-17 18:02:14
Edit Download
33.90 KB lrwxr-xr-x 2023-06-06 13:32:21
Edit Download
43.95 KB lrwxr-xr-x 2023-06-06 13:32:21
Edit Download
6.93 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
34.42 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
26.66 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
26.07 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
6.99 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
39.29 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
49.57 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
5.36 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
38.76 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
10.29 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
12.61 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
257 B lrw-r--r-- 2023-06-06 13:32:21
Edit Download
76.42 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
17.94 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
2.06 KB lrw-r--r-- 2023-10-17 18:04:15
Edit Download
7.83 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
24.31 KB lrw-r--r-- 2023-10-17 18:12:55
Edit Download
11.14 KB lrwxr-xr-x 2023-06-06 13:32:21
Edit Download
103.98 KB lrwxr-xr-x 2023-10-17 18:02:14
Edit Download
22.71 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
26.89 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
18.95 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
1003 B lrw-r--r-- 2023-06-06 13:32:21
Edit Download
49.63 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
13.16 KB lrwxr-xr-x 2023-06-06 13:32:21
Edit Download
2.31 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
25.24 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
29.17 KB lrwxr-xr-x 2023-06-06 13:32:21
Edit Download
23.06 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
16.68 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
879 B lrw-r--r-- 2023-06-06 13:32:21
Edit Download
140.35 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
9.49 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
67.35 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
7.11 KB lrw-r--r-- 2023-10-17 18:12:57
Edit Download
29.80 KB lrw-r--r-- 2023-10-17 18:02:14
Edit Download
19.23 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
17.80 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
20.89 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
23.52 KB lrwxr-xr-x 2023-06-06 13:32:21
Edit Download
5.77 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
7.36 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
85.67 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
30.04 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
1.76 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
25.49 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
8.54 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
5.21 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
5.89 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
14.26 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
21.26 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
223.31 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
90.99 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
6.04 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
3.04 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
24.68 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
37.34 KB lrw-r--r-- 2023-10-17 18:03:44
Edit Download
37.61 KB lrw-r--r-- 2023-10-17 18:12:19
Edit Download
7.05 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
5.60 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
5.03 KB lrw-r--r-- 2023-06-06 13:32:21
Edit Download
64 B lrw-r--r-- 2023-06-06 13:32:21
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).