libssh2_sftp_tell

Langue: en

Version: 1 Jun 2007 (ubuntu - 08/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

libssh2_sftp_tell - get the current read/write position indicator for a file

SYNOPSIS

#include <libssh2.h> #include <libssh2_sftp.h>

size_t libssh2_sftp_tell(LIBSSH2_SFTP_HANDLE *handle);

DESCRIPTION

handle - SFTP File Handle as returned by libssh2_sftp_open(3)

Identify the current offset of the file handle's internal pointer. Note that the SSH2 protocol does not have a notion of file pointers and that libssh2 implements this using a localized file pointer which is updated with each read/write call.

RETURN VALUE

Current offset from beginning of file in bytes.

SEE ALSO

libssh2_sftp_open(3)