Struct FtpStream

Source
pub struct FtpStream { /* private fields */ }
Expand description

Stream to interface with the FTP server. This interface is only for the command stream.

Implementations§

Source§

impl FtpStream

Source

pub async fn connect<A: ToSocketAddrs>(addr: A) -> Result<FtpStream>

Creates an FTP Stream.

Source

pub fn get_ref(&self) -> &TcpStream

Returns a reference to the underlying TcpStream.

Example:

use tokio::net::TcpStream;
use std::time::Duration;
use async_ftp::FtpStream;

async {
  let stream = FtpStream::connect("172.25.82.139:21").await
                         .expect("Couldn't connect to the server...");
  let s: &TcpStream = stream.get_ref();
};
Source

pub fn get_welcome_msg(&self) -> Option<&str>

Get welcome message from the server on connect.

Source

pub async fn login(&mut self, user: &str, password: &str) -> Result<()>

Log in to the FTP server.

Source

pub async fn cwd(&mut self, path: &str) -> Result<()>

Change the current directory to the path specified.

Source

pub async fn cdup(&mut self) -> Result<()>

Move the current directory to the parent directory.

Source

pub async fn pwd(&mut self) -> Result<String>

Gets the current directory

Source

pub async fn noop(&mut self) -> Result<()>

This does nothing. This is usually just used to keep the connection open.

Source

pub async fn mkdir(&mut self, pathname: &str) -> Result<()>

This creates a new directory on the server.

Source

pub async fn transfer_type(&mut self, file_type: FileType) -> Result<()>

Sets the type of file to be transferred. That is the implementation of TYPE command.

Source

pub async fn quit(&mut self) -> Result<()>

Quits the current FTP session.

Source

pub async fn restart_from(&mut self, offset: u64) -> Result<()>

Sets the byte from which the transfer is to be restarted.

Source

pub async fn get(&mut self, file_name: &str) -> Result<BufReader<DataStream>>

Retrieves the file name specified from the server. This method is a more complicated way to retrieve a file. The reader returned should be dropped. Also you will have to read the response to make sure it has the correct value.

Source

pub async fn rename(&mut self, from_name: &str, to_name: &str) -> Result<()>

Renames the file from_name to to_name

Source

pub async fn retr<F, T, P, E>( &mut self, filename: &str, reader: F, ) -> Result<T, E>
where F: Fn(BufReader<DataStream>) -> P, P: Future<Output = Result<T, E>>, E: From<FtpError>,

The implementation of RETR command where filename is the name of the file to download from FTP and reader is the function which operates with the data stream opened.

use async_ftp::{FtpStream, DataStream, FtpError};
use tokio::io::{AsyncReadExt, BufReader};
use std::io::Cursor;
async {
  let mut conn = FtpStream::connect("172.25.82.139:21").await.unwrap();
  conn.login("Doe", "mumble").await.unwrap();
  let mut reader = Cursor::new("hello, world!".as_bytes());
  conn.put("retr.txt", &mut reader).await.unwrap();

  async fn lambda(mut reader: BufReader<DataStream>) -> Result<Vec<u8>, FtpError> {
    let mut buffer = Vec::new();
    reader
        .read_to_end(&mut buffer)
        .await
        .map_err(FtpError::ConnectionError)?;
    assert_eq!(buffer, "hello, world!".as_bytes());
    Ok(buffer)
  };

  assert!(conn.retr("retr.txt", lambda).await.is_ok());
  assert!(conn.rm("retr.txt").await.is_ok());
};
Source

pub async fn simple_retr(&mut self, file_name: &str) -> Result<Cursor<Vec<u8>>>

Simple way to retr a file from the server. This stores the file in memory.

use async_ftp::{FtpStream, FtpError};
use std::io::Cursor;
async {
    let mut conn = FtpStream::connect("172.25.82.139:21").await?;
    conn.login("Doe", "mumble").await?;
    let mut reader = Cursor::new("hello, world!".as_bytes());
    conn.put("simple_retr.txt", &mut reader).await?;

    let cursor = conn.simple_retr("simple_retr.txt").await?;

    assert_eq!(cursor.into_inner(), "hello, world!".as_bytes());
    assert!(conn.rm("simple_retr.txt").await.is_ok());

    Ok::<(), FtpError>(())
};
Source

pub async fn rmdir(&mut self, pathname: &str) -> Result<()>

Removes the remote pathname from the server.

Source

pub async fn rm(&mut self, filename: &str) -> Result<()>

Remove the remote file from the server.

Source

pub async fn put<R: AsyncRead + Unpin>( &mut self, filename: &str, r: &mut R, ) -> Result<()>

This stores a file on the server.

Source

pub async fn list(&mut self, pathname: Option<&str>) -> Result<Vec<String>>

Execute LIST command which returns the detailed file listing in human readable format. If pathname is omited then the list of files in the current directory will be returned otherwise it will the list of files on pathname.

Source

pub async fn nlst(&mut self, pathname: Option<&str>) -> Result<Vec<String>>

Execute NLST command which returns the list of file names only. If pathname is omited then the list of files in the current directory will be returned otherwise it will the list of files on pathname.

Source

pub async fn mdtm(&mut self, pathname: &str) -> Result<Option<DateTime<Utc>>>

Retrieves the modification time of the file at pathname if it exists. In case the file does not exist None is returned.

Source

pub async fn size(&mut self, pathname: &str) -> Result<Option<usize>>

Retrieves the size of the file in bytes at pathname if it exists. In case the file does not exist None is returned.

Source

pub async fn read_response(&mut self, expected_code: u32) -> Result<Line>

Source

pub async fn read_response_in(&mut self, expected_code: &[u32]) -> Result<Line>

Retrieve single line response

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.