In my folder some zip file some excel file so how to extract zip file in my folder

Plz any one help me

Hi,

There is an Extract/Unzip Files activity. Have you tried that yet?
https://docs.uipath.com/activities/docs/extract-files

Alternatively, if you don’t need to worry about password protected archives then this script inside an Invoke Code activity achieves a similar result.

System.IO.Compression.ZipFile.ExtractToDirectory(zipFilePath,directoryToExtractTo)

Let me know how you get on.