I have a zip command in Unix or Linux like this code
source = ['/home/swaroop/byte', '/home/swaroop/bin']target_dir='/mnt/e/backup/'target=target_dir+time.strftime('%Y%m%d%H%M%S')+'.zip'zip_command="zip -qr '%s' %s"%(target,' '.join(source))but my have a window system! what the zip command in window system?