Capivara 0.8.6 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Capivara 0.8.6 (Default branch)
# 1  
Old 02-01-2009
Capivara 0.8.6 (Default branch)

Image Capivara is an application to manage and synchronize files and directories on either local or remote computers. FTP/SFTP are supported to access remote servers. Additionally, Capivara can also serve as a file manager with all features that the java.io package supports. License: GNU General Public License (GPL) Changes:
This release has an option to keep remote connections alive, so (S)FTP connections are less likely to get disconnected due to timeouts. The algorithm to find duplicated files has been optimized for speed. This version comes with support for saving user passwords. Some minor GUI problems have been fixed. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
CURLINFO_FTP_ENTRY_PATH(3)				     curl_easy_getinfo options					CURLINFO_FTP_ENTRY_PATH(3)

NAME
CURLINFO_FTP_ENTRY_PATH - get entry path in FTP server SYNOPSIS
#include <curl/curl.h> CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_FTP_ENTRY_PATH, char **path); DESCRIPTION
Pass a pointer to a char pointer to receive a pointer to a string holding the path of the entry path. That is the initial path libcurl ended up in when logging on to the remote FTP server. This stores a NULL as pointer if something is wrong. The path pointer will be NULL or pointing to private memory you MUST NOT free - it gets freed when you call curl_easy_cleanup(3) on the corresponding CURL handle. PROTOCOLS
FTP(S) and SFTP EXAMPLE
TODO AVAILABILITY
Added in 7.15.4. Works for SFTP since 7.21.4 RETURN VALUE
Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not. SEE ALSO
curl_easy_getinfo(3), curl_easy_setopt(3), libcurl 7.54.0 February 03, 2016 CURLINFO_FTP_ENTRY_PATH(3)