LibCurl FTP 目录的子目录列表

发布于 2024-10-04 06:32:45 字数 209 浏览 5 评论 0原文

我对这个 libcurl 东西很陌生,并且正在努力尝试从我连接的站点获取子文件夹的目录内容。

我可以成功地向 .

连接后,我想获取文件夹“subfolder1”中的文件列表。无论我尝试什么,我都只能获取已连接的根目录的目录内容。

我在这里真的很忙,需要一些帮助。我什至不会发布许多迭代尝试,因为它可能会混淆我在这里可能找到的最终答案。

谢谢

I'm new to this libcurl stuff and struggling trying to get directory content of a sub-folder from the site I connect to.

I can successfully provide user and password to an .

Once connected, I want to get a list of files in a folder "subfolder1". No matter what I'm trying, I am only getting the directory content of the root as connected.

I'm seriously spinning wheels here and need some help. I'm not even going to post the many iterative attempts as it might confuse the final answer that I might find here.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

荒路情人 2024-10-11 06:32:45

更新...

虽然我无法发出自己的 FTP 命令来强制更改目录,但是没有意义,然后获取目录列表,通过添加

curl_easy_setopt(myCurl, CURLOPT_URL, FullURLToSubFolder );

似乎来强制它,并且我得到正确的目录列表。


UPDATE...

Although it doesn't make sense that I can't issue my own FTP commands to force changing to a directory, THEN get the directory list, by adding

curl_easy_setopt(myCurl, CURLOPT_URL, FullURLToSubFolder );

appears to force it and I get proper directory listing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文