@@ -9860,7 +9860,7 @@ def SevenZipFileListFile(infile, verbose=False, returnfp=False):
98609860 return SevenZipFileListFiles (infile , verbose , returnfp )
98619861
98629862
9863- def InFileListFiles (infile , verbose = False , formatspecs = __file_format_multi_dict__ , seektoend = False , newstyle = False , returnfp = False ):
9863+ def InFileListFiles (infile , fmttype = "auto" , filestart = 0 , seekstart = 0 , seekend = 0 , skipchecksum = False , formatspecs = __file_format_multi_dict__ , saltkey = None , seektoend = False , verbose = False , newstyle = False , returnfp = False ):
98649864 checkcompressfile = CheckCompressionSubType (infile , formatspecs , filestart , True )
98659865 if (IsNestedDict (formatspecs ) and checkcompressfile in formatspecs ):
98669866 formatspecs = formatspecs [checkcompressfile ]
@@ -9873,7 +9873,7 @@ def InFileListFiles(infile, verbose=False, formatspecs=__file_format_multi_dict_
98739873 elif (py7zr_support and checkcompressfile == "7zipfile" and py7zr .is_7zfile (infile )):
98749874 return SevenZipFileListFiles (infile , verbose , returnfp )
98759875 elif (checkcompressfile == formatspecs ['format_magic' ]):
9876- return CatFileListFiles (infile , 0 , 0 , False , formatspecs , seektoend , verbose , newstyle , returnfp )
9876+ return ArchiveFileListFiles (infile , fmttype , filestart , seekstart , seekend , skipchecksum , formatspecs , saltkey , seektoend , verbose , newstyle , returnfp )
98779877 else :
98789878 return False
98799879 return False
0 commit comments