Move a file into a newly created folder in the program

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.

use move file activity

it is so blurry i can’t see anything.

@Amr_Nweery

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