CURLINFO_FTP_ENTRY_PATH.3 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. .\" *
  10. .\" * This software is licensed as described in the file COPYING, which
  11. .\" * you should have received as part of this distribution. The terms
  12. .\" * are also available at https://curl.se/docs/copyright.html.
  13. .\" *
  14. .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. .\" * copies of the Software, and permit persons to whom the Software is
  16. .\" * furnished to do so, under the terms of the COPYING file.
  17. .\" *
  18. .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. .\" * KIND, either express or implied.
  20. .\" *
  21. .\" **************************************************************************
  22. .\"
  23. .TH CURLINFO_FTP_ENTRY_PATH 3 "12 Sep 2015" "libcurl 7.44.0" "curl_easy_getinfo options"
  24. .SH NAME
  25. CURLINFO_FTP_ENTRY_PATH \- get entry path in FTP server
  26. .SH SYNOPSIS
  27. #include <curl/curl.h>
  28. CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_FTP_ENTRY_PATH, char **path);
  29. .SH DESCRIPTION
  30. Pass a pointer to a char pointer to receive a pointer to a string holding the
  31. path of the entry path. That is the initial path libcurl ended up in when
  32. logging on to the remote FTP server. This stores a NULL as pointer if
  33. something is wrong.
  34. The \fBpath\fP pointer will be NULL or pointing to private memory you MUST NOT
  35. free - it gets freed when you call \fIcurl_easy_cleanup(3)\fP on the
  36. corresponding CURL handle.
  37. .SH PROTOCOLS
  38. FTP(S) and SFTP
  39. .SH EXAMPLE
  40. .nf
  41. CURL *curl = curl_easy_init();
  42. if(curl) {
  43. curl_easy_setopt(curl, CURLOPT_URL, "ftp://example.com");
  44. res = curl_easy_perform(curl);
  45. if(!res) {
  46. /* extract the entry path */
  47. char *ep = NULL;
  48. res = curl_easy_getinfo(curl, CURLINFO_FTP_ENTRY_PATH, &ep);
  49. if(!res && ep) {
  50. printf("Entry path was: %s\\n", ep);
  51. }
  52. }
  53. curl_easy_cleanup(curl);
  54. }
  55. .fi
  56. .SH AVAILABILITY
  57. Added in 7.15.4. Works for SFTP since 7.21.4
  58. .SH RETURN VALUE
  59. Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
  60. .SH "SEE ALSO"
  61. .BR curl_easy_getinfo "(3), " curl_easy_setopt "(3), "