Hello.
I am trying to send data to a file on FTP. But nothing works for me. When doing this, plain text is sent.
This code sends text to file.
ftpUpload(I("Helo World!"),
"ftp://login:password@ftp/file.txt",)
But for some reason this text doesn't send data.
ftpUpload(I(data),
"ftp://login:password@ftp/file.txt",)
data -- is my data frame
Can anyone suggest how to send a data frame to FTP without first saving it to a file on a computer?