Hi,
I am seeking help for one of a situation where after uploading the .zip file i need to extract that .zip file and after that delete that same .zip file.
Steps:
Connect to FTP
Upload the .ZIP file to FTP
Extract the .ZIP file over FTP
Delete the same .ZIP file over FTP
P.S - zip file name is dynamic.
srdjan.suc
(Srdjan Suc)
August 18, 2019, 10:22am
2
Did you see BalaReva Activities? It has zip and unzip activities pretty easily.
1 Like
for zip and unzip or vice verse i am using Invoke method activity.
now can you help me with below ----
MY CONCERN IS ABOUT UNZIPPING OVER FTP AND THEN DELETE THE SAME .ZIP FILE, WHERE AS MY .ZIP FILE NAME IS DYNAMIC.
AshwinS2
(Ashwin S)
August 18, 2019, 3:54pm
4
Hi @indrajit.shah
Based on Unzip the file
Check this
I’m opening your workflow and I get this warning 'ZipFile' does not have a public static method named 'ExtractToDirectory' matching the parameter types, generic type arguments, and generic type constraints supplied to InvokeMethod.
Basically you’re trying to call ZipFile.ExtracttoDirectory() instead of ZipFile.ExtractToDirectory(zipFile, extractPath)
After setting the parameters (zipPath, extractPath) for the ExtractToDirectory method it will work.
Aren’t you getting the same?
[image]
Use the Delete file activity
Thanks
Ashwin S
balupad14
(Balamurugan (BalaReva))
August 18, 2019, 8:52pm
5
Hi @srdjan.suc and @AshwinS2 ,
you can the zip and unzip components from UiPath Go also.
Hi Guys,
I have successfully uploaded Zip and UnZip in UiPath Go.This package contains the below activities .
Zip Activity
It is a popular archive format widely using in Internet. ZIP files are data containers. They store one or several files and folders in the compressed form as a single file. Password is optional. It compresses in “zip” and “rar” format.
Unzip Activity
It is the act of extracting the files from a zipped single file (with password) to a specific folder.
https://go.uipath.…
Regards
Balamurugan.S
can you help me with the workflow, with the flow representing deleting .zip from ftp file which is uploaded.
Thanks but my concern is not about zip unzip my concern is about deleting the .zip file over FTP, can you help me with the demo workflow if you have?
@Palaniyappan , @loginerror , @aksh1yadav , @ClaytonM
Can you please have a look into this… in one sentence, I need to upload an entire folder including sub-folders and file to FTP, can you help?