Sets or gets the target path.
Syntax:
Remarks
When sending, the Target Path specifies where in the destination server the file should be saved to. When receiving, the Target Path specifies where in the destination server to download the file from.
Example:
Set oTransport = oTransports.CreateTransport
oTransport.SetFTP ' FTP
oTransport.Address = "www.yourdomain.com"
oTransport.TargetPath = "folderpath"
oTransport.Password = "YourUserID"
oTransport.User = "YourPassword"
Samples