I have an ifs folder that has multiple files stored within it and I want them to be sent to one of my clients. Is there any way to zip the IFS folder from the green screen IBM i so that then I can send the zip file to the client?
Sorry, you do not have permission to ask a question, You must login to ask a question.
Sorry, you do not have permission to ask a question.
You can run this command from the command line on IBM i green screen to zip your IFS folder.
strqsh cmd('jar cfM /home/admin/workfiles.zip /home/admin/workfiles/*')
This will create a zip file named
workfiles.zip
in the/home/admin/
folder that contains everything inside/home/admin/workfiles/
.