Legacy to windows migration- move file

Hie @Raj_esh If you have a source and destination as string variables:

sourcePath = “C:\source\file.txt”
destinationPath = “C:\destination\file.txt”

sourceResource = New FileInfo(sourcePath)
destinationResource = New FileInfo(destinationPath)

pass this in move file activity.
cheers

1 Like