cURL - 使用 cURL 来 ftp 文件并保留文件的原始时间戳

发布于 2024-10-30 11:40:27 字数 138 浏览 3 评论 0原文

我正在使用curl 从 FTPS 站点下载一些文件。当我将文件从站点下载到我的计算机时,zip 文件日期会更改为下载时间和日期。我想保留 FTPS 服务器上的原始时间戳。 请告知如何执行此操作。如果你能提供 gr8 的例子,我是卷曲新手。

谢谢

I am using curl to download some files from a FTPS site. When i download the files from site to my machine the zip files date changes to the download time and date. I want to keep the original timestamp that is on the FTPS server.
Please advise how to do this. If you can provide examples that would be gr8 i am new to curl.

Thanks

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

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

发布评论

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

评论(1

甜心小果奶 2024-11-06 11:40:27

关键是这个命令行选项:

   -R/--remote-time
          When  used,  this  will make libcurl attempt to figure out the
          timestamp of the remote file, and if that  is  available  make
          the local file get that same timestamp.

...然后可以像这样使用:

curl -R -O --ssl ftp://example.com/that/file/I/want.txt

(--ssl 以前称为 --ftp-ssl)

The key is this command line option:

   -R/--remote-time
          When  used,  this  will make libcurl attempt to figure out the
          timestamp of the remote file, and if that  is  available  make
          the local file get that same timestamp.

... which then can be used like:

curl -R -O --ssl ftp://example.com/that/file/I/want.txt

(--ssl was formerly known as --ftp-ssl)

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