Struct ftp::FtpStream [] [src]

pub struct FtpStream { /* fields omitted */ }

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

Methods

impl FtpStream
[src]

[src]

Creates an FTP Stream.

Important traits for &'a TcpStream
[src]

Returns a reference to the underlying TcpStream.

Example:

use std::net::TcpStream;

let stream = FtpStream::connect("127.0.0.1:21")
                       .expect("Couldn't connect to the server...");
stream.get_ref().set_read_timeout(Duration::from_secs(10))
                .expect("set_read_timeout call failed");

[src]

Log in to the FTP server.

[src]

Change the current directory to the path specified.

[src]

Move the current directory to the parent directory.

[src]

Gets the current directory

[src]

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

[src]

This creates a new directory on the server.

[src]

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

[src]

Quits the current FTP session.

[src]

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.

[src]

Renames the file from_name to to_name

[src]

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.

assert!(conn.retr("retr.txt", |stream| {
    let mut buf = Vec::new();
    stream.read_to_end(&mut buf).map(|_|
        assert_eq!(buf, "hello, world!".as_bytes())
    ).map_err(|e| FtpError::ConnectionError(e))
}).is_ok());

[src]

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

let cursor = conn.simple_retr("simple_retr.txt").unwrap();
// do something with bytes
assert_eq!(cursor.into_inner(), "hello, world!".as_bytes());

[src]

Removes the remote pathname from the server.

[src]

Remove the remote file from the server.

[src]

This stores a file on the server.

[src]

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.

[src]

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.

[src]

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

[src]

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

[src]

[src]

Retrieve single line response

Trait Implementations

impl Debug for FtpStream
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for FtpStream

impl Sync for FtpStream