omegahat / RCurl

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RCurl::ftpUpload() unspecified error: "Error in function (type, msg, asError = TRUE) : "

jzadra opened this issue · comments

I am getting an odd, empty error when trying to use RCurl::ftpUpload():

RCurl::ftpUpload(what = "test.txt",
                 asText = FALSE,
                 to = "sftp://myserver.com/uploads/test.txt",
                 port =2222,
                 userpwd = "user:pass",
                 connecttimeout = 30)

Error in function (type, msg, asError = TRUE) :

I have checked that I can make a connection to the server on that port (ie that it isn't firewalled) and I can, so I don't think that is the issue.

I'm not sure how to proceed since there isn't any actual error information.

The sftp protocol does appear to be available:

RCurl::curlVersion()$protocols
[1] "dict" "file" "ftp" "ftps" "gopher" "http" "https" "imap" "imaps" "ldap" "ldaps" "pop3" "pop3s" "rtmp" "rtsp" "scp" "sftp" "smb" "smbs" "smtp" "smtps" "telnet" "tftp"