rust-ftp icon indicating copy to clipboard operation
rust-ftp copied to clipboard

FTP client for Rust

Results 38 rust-ftp issues
Sort by recently updated
recently updated
newest added

Would be nice to have an example of how to properly download/upload a large file, avoiding the control stream timeout (null command)... I'm relatively new to rust and just trying...

I tried to upload the image and the zip, but I found that they were all corrupted.

Hi @mattnenterprise Would you be happy for people still use this crate ? e.g. say if I would send a security related PR or issue would you be open to...

I make a test to upload files with format: Zip, Rar,MSI, Exe, etc and always the file when it's uploaded its modified and then broken when it's downloaded and try...

# Example ```rust use e_services::ftp::Ftp; fn test() -> Result { let mut ftp = Ftp::connect(FtpInfo { host: "192.168.127.7", uname: "ftpdata", passwd: "F%0D@ta", port: 21, })?; ftp.login()?; let pwd = ftp.pwd()?;...

Help please Currently im doing it this way: `if !ftp.cwd(remote_dir_path).is_ok()`