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

时间:2011-04-05 19:36:42

标签: file curl timestamp ftps

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

由于

2 个答案:

答案 0 :(得分:17)

关键是这个命令行选项:

   -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)

答案 1 :(得分:-2)

使用--remote-name

巧合的是,我通常使用wget,它通常会保留文件的远程名称。