I need to move a file into a new folder that i have created in uipath. I tried to add the name of the folder after the destination of the folder, but it doesn’t work.
Any help would be much appreciated.
it is so blurry i can’t see anything.
Have a look on this thread.
Put the destination folder into a variable.
Use the variable in Create Folder and then in the destination path of Move File.
Hey!
Welcome to community!
Do we wants to move the files to the new created folder?
Try this:
Assign strSourceFolder = "Desktop\InputFolder\"
Assign strDestinationFolder = "Desktop\OutputFolder\"
MOVE File
File - strSourceFolder+“FileName.xlsx”
Destination - strDestinationFolder
Regards,
NaNi