我正在使用RCurl并且在尝试删除ftp服务器username:password
上的ftp帐户(ftp://ftp.foo.bar
)上的文件(filename.txt)时遇到很大麻烦。
我根本无法使其工作,例如我尝试过:
httpDELETE("ftp://ftp.foo.bar/filename.txt", userpwd = "username:password")
和
curlPerform(url = "ftp ://ftp.foo.bar/filename.txt", customrequest = "DELETE", userpwd = "username:password")
它们都返回(OK 0)但文件仍在那里。
我尝试了一些网址变体无济于事。
你们能指出我正确的方向吗?
非常感谢。 ERW。