I have an FTP Server outside of the domain (In a workgroup). I need to move files using an application called by the FTP client on the FTP server to a share within the domain using VB.net:
(System.IO.File.Move(SourcePath & Filename, TargetPath & Filename))
Impersonation will not work neither will mapping a drive (As no user will be logged on) This is a console application that takes the above parameters.
Any suggestions?
Thanks.