mirror of
				https://github.com/libssh2/libssh2.git
				synced 2025-11-03 22:13:11 +03:00 
			
		
		
		
	Functions that return an "int", and friends, return LIBSSH2SFTP_EAGAIN. Functions that return a structure return NULL and set the error to LIBSSH2_ERROR_EAGAIN
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Groff
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Groff
		
	
	
	
	
	
.\" $Id: libssh2_sftp_open_ex.3,v 1.4 2007/06/07 16:01:12 jehousley Exp $
 | 
						|
.\"
 | 
						|
.TH libssh2_sftp_open_ex 3 "23 Jan 2007" "libssh2 0.15" "libssh2 manual"
 | 
						|
.SH NAME
 | 
						|
libssh2_sftp_open - 
 | 
						|
.SH SYNOPSIS
 | 
						|
#include <libssh2.h>
 | 
						|
#include <libssh2_sftp.h>
 | 
						|
 | 
						|
LIBSSH2_SFTP_HANDLE *libssh2_sftp_open_ex(LIBSSH2_SFTP *sftp,
 | 
						|
                     char *filename, int filename_len,
 | 
						|
                     unsigned long flags, long mode, int open_type);
 | 
						|
 | 
						|
LIBSSH2_SFTP_HANDLE *libssh2_sftp_open(LIBSSH2_SFTP *sftp,
 | 
						|
                     char *filename, unsigned long flags, long mode);
 | 
						|
 | 
						|
LIBSSH2_SFTP_HANDLE *libssh2_sftp_opendir(LIBSSH2_SFTP *sftp,
 | 
						|
                     char *path);
 | 
						|
.SH DESCRIPTION
 | 
						|
\fIsftp\fP - SFTP instance as returned by libssh2_sftp_init(). 
 | 
						|
 | 
						|
\fIfilename\fP - Remote file/directory resource to open 
 | 
						|
 | 
						|
\fIfilename_len\fP - Length of filename 
 | 
						|
 | 
						|
\fIflags\fP - Any (reasonable) combination of the LIBSSH2_FXF_* constants
 | 
						|
corresponding fopen modes.
 | 
						|
 | 
						|
\fImode\fP - POSIX file permissions to assign if the file is being newly
 | 
						|
created.
 | 
						|
 | 
						|
\fIopen_type\fP - Either of LIBSSH2_SFTP_OPENFILE (to open a file) or
 | 
						|
LIBSSH2_SFTP_OPENDIR (to open a directory).
 | 
						|
.SH RETURN VALUE
 | 
						|
A pointer to the newly created LIBSSH2_SFTP_HANDLE instance or NULL on
 | 
						|
failure.
 | 
						|
.SH ERRORS
 | 
						|
LIBSSH2_ERROR_EAGAIN
 | 
						|
Marked for non-blocking I/O but the call would block.
 | 
						|
.SH "SEE ALSO"
 | 
						|
.BI libssh_sftp_close(3)
 | 
						|
 |