如何通过命令提示符将文件发送到 ftp 服务器?

如何通过命令提示符将文件发送到 ftp 服务器?

我想使用 Windows 命令行将文件发送到 ftp 服务器。我该怎么做?

答案1

ftp ftp.someftp.com
cd /pub/somewhere
binary # if you are uploading non-TXT files
passive on
put filetobeuploaded.zip

类似这样的内容应该足够了。passive on在某些服务器上是需要的。您可能不需要它。

答案2

如果是静态的,则将命令放在 txt 文件中,例如 command.txt,然后调用

ftp -s:命令.txt

保持清晰美观,您可以在需要时修改 txt 文件。

相关内容