1 .\" $Id: libssh2_sftp_tell.3,v 1.1 2007/06/14 16:33:38 jehousley Exp $
3 .TH libssh2_sftp_tell 3 "1 Jun 2007" "libssh2 0.15" "libssh2 manual"
5 libssh2_sftp_tell - get the current read/write position indicator for a file
8 #include <libssh2_sftp.h>
11 libssh2_sftp_tell(LIBSSH2_SFTP_HANDLE *handle);
14 \fIhandle\fP - SFTP File Handle as returned by
15 .BR libssh2_sftp_open(3)
17 Identify the current offset of the file handle's internal pointer. Note
18 that the SSH2 protocol does not have a notion of file pointers and that
19 libssh2 implements this using a localized file pointer which is updated
20 with each read/write call.
23 Current offset from beginning of file in bytes.
26 .BR libssh2_sftp_open(3)