robotframework-archivelibrary
robotframework-archivelibrary copied to clipboard
Cannot create zipfiles > 4GB Exception: "...Filesize would require ZIP64 extensions" in the python zipfile module you can add a flag "allowZip64 = True" in the cmd maybe you can...
https://github.com/MarketSquare/robotframework-archivelibrary/issues/35 If the zip file was created in a files directory, the created zip contained its copy, which was corrupted.
The readme has a link to the hosted keyword documentation at http://bulkan.github.io/robotframework-archivelibrary This link is unfortunately leading to a 404.
Image that you a directory C:\MyDirectory with some files and you wanted to create a Zip-File of C:\MyDirectory with name C:\MyDirectory\mydirectory.zip. In this case the keyword `create_zip_from_files_in_directory( "C:\MyDirectory", "C:\MyDirectory\mydirectory.zip") `...
In ‘utils.py’, ``` Line 22 curdir = os.path.join(basedir, dir) Line 42 outfile = open(os.path.join(dest, name), 'wb') ``` When I unzip a file which has a path in it,  The...
The **archive_should_contain_file(self, zip_file, filename)** function currently accepts filename as a static string. To enhance the flexibility and usability of this function, it should also support filename in regex format. to...