Hi All,
I am doing some tests uploading some recorded audio (.3gp) to an FTP server and see if the upload functionality works but I am getting this error "Server returned an error: 553 Could not create file."
I am using this https://www.swfwmd.state.fl.us/data/ftp/ for testing.
It's a small xamarin app and here the url and credentials used. I think it connect fine but cannot upload.
What could be the problem? the file format? or... any other good ftp Server I can test on?
Any help/guidance will be appreciated.
Eric
I am doing some tests uploading some recorded audio (.3gp) to an FTP server and see if the upload functionality works but I am getting this error "Server returned an error: 553 Could not create file."
I am using this https://www.swfwmd.state.fl.us/data/ftp/ for testing.
It's a small xamarin app and here the url and credentials used. I think it connect fine but cannot upload.
What could be the problem? the file format? or... any other good ftp Server I can test on?
Code:
string FtpUrl = [URL]ftp://ftp.swfwmd.state.fl.us[/URL];
string UserName = "anonymous";
string Password = "myemail";
Eric