Ftp

使用 wget 從 hermes ftp 伺服器下載 GlobColour 數據

  • October 30, 2017

我想從 下載 netCDF 產品ftp://ftp.hermes.acri.fr。我wget在 Windows 系統的 cygwin 包中使用過。我訪問數據的連結地址是ftp://ftp.hermes.acri.fr/691969751,我的使用者名和密碼user:ftp_hermes password:hermes%也是。所以我輸入了這個命令:

wget ftp://ftp_hermes:hermes%@ftp.hermes.acri.fr/691969751

我收到了這條消息:

 --2017-10-30 13:16:18--  ftp://ftp_hermes:*password*@ftp.hermes.acri.fr/691969751
          => ‘691969751’
Resolving ftp.hermes.acri.fr... 213.244.27.35
Connecting to ftp.hermes.acri.fr|213.244.27.35|:21... connected.
Logging in as ftp_hermes ... Logged in!
==> SYST ... done.    ==> PWD ... done.
==> TYPE I ... done.  ==> CWD not needed.
==> SIZE 691969751 ... done.

==> PASV ... done.    ==> RETR 691969751 ...
No such file ‘691969751’.

有人有線索嗎?

看來您正在遞歸下載文件夾。傳遞**-r**參數,它應該從 FTP 伺服器下載數據。

wget ftp://ftp.hermes.acri.fr/691969751 --ftp-user=ftp_hermes --ftp-pass=hermes% -r 

or

wget ftp://ftp_hermes:hermes%@ftp.hermes.acri.fr/691969751 -r

引用自:https://serverfault.com/questions/880958