我正在使用curl从FTPS站点下载一些文件。当我从网站下载文件到我的机器时,压缩文件日期会更改为下载时间和日期。我想保留FTPS服务器上的原始时间戳。请告知怎么做。如果你能提供一些例子,这将是gr8我是新的curl。
谢谢
关键是这个命令行选项:
-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)