Hi Team,I am trying to zip a .txt file using below code:var w =
vars.filename; //file path + file name: zip.save(w + ".zip", true); this
is where the zipped file will be saved. You must include the zipped file
name including .zip file extensionAbove code is working fine on our dev
instance where source and target are locally hosted . but the same code
is giving issue on UAT instance as source and target are remotely
hosted.Then we used the below code on UAT instance , that is able to
generate zi...