aboutsummaryrefslogtreecommitdiff
path: root/docs/libcurl/opts/CURLOPT_APPEND.3
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2016-03-06 23:28:35 +0100
committerDaniel Stenberg <daniel@haxx.se>2016-03-06 23:28:35 +0100
commitc13a54a2fb5062d1abaa223e5a92f59186878ba6 (patch)
tree6f27999b7428c3debc4c1b28e8d9e7133cb37d08 /docs/libcurl/opts/CURLOPT_APPEND.3
parent4ce153c62c03934dc9db851e37c9030996fa4347 (diff)
CURLOPT_APPEND.3: added example
Diffstat (limited to 'docs/libcurl/opts/CURLOPT_APPEND.3')
-rw-r--r--docs/libcurl/opts/CURLOPT_APPEND.321
1 files changed, 16 insertions, 5 deletions
diff --git a/docs/libcurl/opts/CURLOPT_APPEND.3 b/docs/libcurl/opts/CURLOPT_APPEND.3
index 886fcbc69..c22acf797 100644
--- a/docs/libcurl/opts/CURLOPT_APPEND.3
+++ b/docs/libcurl/opts/CURLOPT_APPEND.3
@@ -5,7 +5,7 @@
.\" * | (__| |_| | _ <| |___
.\" * \___|\___/|_| \_\_____|
.\" *
-.\" * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
+.\" * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
.\" *
.\" * This software is licensed as described in the file COPYING, which
.\" * you should have received as part of this distribution. The terms
@@ -28,17 +28,28 @@ CURLOPT_APPEND \- enable appending to the remote file
CURLcode curl_easy_setopt(CURL *handle, CURLOPT_APPEND, long append);
.SH DESCRIPTION
-A parameter set to 1 tells the library to append to the remote file instead of
-overwrite it. This is only useful when uploading to an FTP site.
+A long parameter set to 1 tells the library to append to the remote file
+instead of overwrite it. This is only useful when uploading to an FTP site.
.SH DEFAULT
-0
+0 (disabled)
.SH PROTOCOLS
FTP
.SH EXAMPLE
-TODO
+.nf
+CURL *curl = curl_easy_init();
+if(curl) {
+
+ curl_easy_setopt(curl, CURLOPT_URL, "ftp://example.com/dir/to/newfile");
+ curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L);
+ curl_easy_setopt(curl, CURLOPT_APPEND, 1L);
+
+ curl_easy_perform(curl);
+}
+.fi
.SH AVAILABILITY
This option was known as CURLOPT_FTPAPPEND up to 7.16.4
.SH RETURN VALUE
Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
.SH "SEE ALSO"
.BR CURLOPT_DIRLISTONLY "(3), " CURLOPT_RESUME_FROM "(3), "
+.BR CURLOPT_UPLOAD "(3), "