Search the Community
Showing results for tags 'zip'.
-
*****Zip***** run python("import shutil import os os.chdir(\'D:/\') shutil.make_archive(\'test\', \'zip\', \'folder-or-file-you-want-to-zip\')") *****UNZIP***** run python("import zipfile with zipfile.ZipFile(\"D:/test.zip\",\"r\") as zip_ref: zip_ref.extractall(\"D:/test\")")
-
Hi Everyone, I am scripting a Bot for WorPress Cloning where FTP Upload is a very crucial part. I am able to upload 4, 5mb files successfully. But when I try to upload bigger file it returns Script Error after 6, 7mb upload. Did anyone encounter similar issues? Thanks in advance, UGem