Why would I be getting an "Permission denied (550)" messsage when trying to upload a file? I know the FTP server is setup correctly as I am able to upload via the sample code and an FTP client using the same server and credentials. I am basically just using the sample upload code.
local = File.OpenRead(strFileLocalPath)
_ftp.Connect(strFTPHost, strFTPPort)
_ftp.Login(strFTPUsername, strFTPPassword)
_ftp.PutFile(local, strFileRemotePath, _remoteOffset, -1)