if(widgetStylesPrinted != true) {document.write('');}var widgetStylesPrinted = true;var content = '
import osimport time source = ['F:\\\\PJ\\PythonPJ'] target_dir = 'F:\\\\PJ\\Backup' target = target_dir + os.sep + time.strftime('%Y%m%d%H%M%S') + '.zip' zip_command = "zip -qr {0} {1}".format(target, ' '.join(source)) print(zip_command)if os.system(zip_command) == 0: print('Successful backup to', target)else: print('Backup FAILED')