Re: When using PutFile can you specify send the files in the order they where created?
WinSCP cannot do it for your automatically, but it's easy to implement it in PowerShell:
(untested)
$fileList = Get-ChildItem "y:\ackn" | Sort-Object LastWriteTime
foreach ($localFile in $fileList)
{
Write-Host "Uploading $($localFile.FullName)..."
$session.PutFileToDirectory($localFile.FullName, "./folder")
}
(untested)