DragonFly On-Line Manual Pages

Search: Section:  


ftp_getcwd(3)                   C Library Calls                  ftp_getcwd(3)

NAME

ftp_getcwd - get current working directory on FTP server

SYNOPSIS

#include <libfget.h> char *ftp_getcwd(FTP *ftp);

VERSION

This man page documents version 1.3 of libfget.

DESCRIPTION

The ftp_getcwd() function returns the name of the current working directory on the FTP server associated with ftp.

RETURN VALUE

The ftp_getcwd() function returns a pointer to a string representing the current working directory on success, or NULL on error (and sets errno).

ERRORS

The ftp_getcwd() function fails if: ENOENT The path specified by dir does not exist. ECONNRESET The server shut down the connection. The caller is then responsible for calling ftp_quit() with the FTP_QUIT_FAST flag set. ETIMEDOUT The operation timed out. (The timeout interval can be set via the FTP_OPT_IO_TIMEOUT option; see the ftp_set_options(3) man page for details.) EINVAL Unexpected response code received from server. EAGAIN An attempt was made to send a request to the server while the data connection is open. It may also fail for any of the errors specified for the underlying poll(2), read(2), or write(2) system calls.

SEE ALSO

libfget(3), getcwd(3) Feep Networks January 2004 ftp_getcwd(3)

Search: Section: