[][src]Struct ssh2::File

pub struct File { /* fields omitted */ }

A file handle to an SFTP connection.

Files behave similarly to std::old_io::File in that they are readable and writable and support operations like stat and seek.

Files are created through open, create, and open_mode on an instance of Sftp.

Implementations

impl File[src]

pub fn setstat(&mut self, stat: FileStat) -> Result<(), Error>[src]

Set the metadata for this handle.

pub fn stat(&mut self) -> Result<FileStat, Error>[src]

Get the metadata for this handle.

pub fn statvfs(&mut self) -> Result<LIBSSH2_SFTP_STATVFS, Error>[src]

pub fn readdir(&mut self) -> Result<(PathBuf, FileStat), Error>[src]

Reads a block of data from a handle and returns file entry information for the next entry, if any.

Note that this provides raw access to the readdir function from libssh2. This will return an error when there are no more files to read, and files such as . and .. will be included in the return values.

Also note that the return paths will not be absolute paths, they are the filenames of the files in this directory.

pub fn fsync(&mut self) -> Result<(), Error>[src]

This function causes the remote server to synchronize the file data and metadata to disk (like fsync(2)).

For this to work requires fsync@openssh.com support on the server.

Trait Implementations

impl Drop for File[src]

impl Read for File[src]

impl Seek for File[src]

fn seek(&mut self, how: SeekFrom) -> Result<u64>[src]

Move the file handle's internal pointer to an arbitrary location.

libssh2 implements file pointers as a localized concept to make file access appear more POSIX like. No packets are exchanged with the server during a seek operation. The localized file pointer is simply used as a convenience offset during read/write operations.

You MUST NOT seek during writing or reading a file with SFTP, as the internals use outstanding packets and changing the "file position" during transit will results in badness.

impl Send for File[src]

impl Sync for File[src]

impl Write for File[src]

Auto Trait Implementations

impl !RefUnwindSafe for File

impl Unpin for File

impl !UnwindSafe for File

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.