Spaces:
Runtime error
Runtime error
File size: 404 Bytes
069157b |
1 2 3 4 5 6 7 8 9 10 11 12 |
import os
import shutil
def make_archive(source, destination):
base = os.path.basename(destination)
name = base.split('.')[0]
format = base.split('.')[1]
archive_from = os.path.dirname(source)
archive_to = os.path.basename(source.strip(os.sep))
shutil.make_archive(name, format, archive_from, archive_to)
shutil.move('%s.%s'%(name,format), destination)
return destination |