Hello,
How to rename a zip file? My robot compresses files to zip and I would like to rename this zip, but I don’t know how.
Thank You.
Hello,
How to rename a zip file? My robot compresses files to zip and I would like to rename this zip, but I don’t know how.
Thank You.
Hi @sullivanne
By using “Rename File” activity you can rename it.
@sullivanne
use move activity and give full path in from block and give same full path with new name.
Hi @sullivanne
To rename a zip file in UiPath, you can use the Rename File
activity. Here’s how you can do it:
originalFilePath
.newFileName
. Assign the desired new name, including the .zip
extension, to this variable.Rename File
activity to your workflow. Configure it as follows:Path
property of the activity to originalFilePath
.NewName
property to newFileName
.Rename File
activity, the zip file will be renamed according to the value you provided in the newFileName
variable.Thanks!!
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.