# list of full paths one per line
$srcFile = get-content -path "C:\...\srcFile.txt"
# list of folders one per line
$destFile = get-content -path "C:\...\destFile.txt"
for ($index=0; $index -le 4; $index++){
$i = $index
$src = $srcFile[$i+1]
$dest = $destFile[$i+1]
#$args = ('/cmd=move','/auto_close','/no_ui','/bufsize=1024','/speed=full','/verify','/acl',$src,'/To='+$dest)
$args = ('/cmd=move /acl """"'+$src+'"""" /To=""""'+$dest+'""""')
& 'C:\Program Files\FastCopy\FastCopy.exe' $args