使用R和RCurl在SFTP中移动远程文件

时间:2013-12-01 22:37:30

标签: r curl rcurl

下载后我需要重命名远程文件。我尝试使用以下命令,但它无法正常工作。

input = getURL(url, userpwd="user:password", postquote=c("/inputs/", "RNFR abc.xml", "RNTO abc.xml_processed"))

这会抛出错误消息

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

请有人建议我对此有所了解。

更新

我尝试使用像

这样的完整路径
input = getURL("url/abc.xml", userpwd="user:password", postquote=c("RNFR /inputs//abc.xml", "RNTO /inputs/abc.xml_processed"))

仍然是同一错误Error in function (type, msg, asError = TRUE) : Unknown SFTP command

0 个答案:

没有答案