ZIP(<zip file name>,<folder to zip>)
UNZIP(<zip file name>,<folder to unzip into>)
LISTZIP(<zip file name>)
(3.3.1)
Created to zip or unzip files sent or received via webservices to and from the Land Registry, but may be useful elsewhere.
LISTZIP(<zip file name>)
RETURN-VALUE is either Pipe separated list of files contained in ZIP file or an error message.
RETURN-STATUE = OK or ERROR
ZIP / UNZIP
Re: ZIP / UNZIP
Has anyone got this working so it actually unzips a into a folder? I have the below and the messages return the list of files in the ZIP and an OK message but nothing appears in the file path.
Code: Select all
UNZIP( v-filePath , v-unzippedPath )
MESSAGE( return-value )
MESSAGE( return-state )
Re: ZIP / UNZIP
I ended up sorting this, incase anyone struggles like me, make sure your file path doesn't contain spaces in any of the folder names.CELRY wrote: ↑Fri May 13, 2022 10:30 amHas anyone got this working so it actually unzips a into a folder? I have the below and the messages return the list of files in the ZIP and an OK message but nothing appears in the file path.
Code: Select all
UNZIP( v-filePath , v-unzippedPath ) MESSAGE( return-value ) MESSAGE( return-state )