批处理文件上传整个文件夹到FTP(Batch file uploading entire folde

2019-09-20 03:26发布

我想上传整个文件夹到FTP,但它只是一个上传文件,可能是什么问题呢?

打开运行窗口→ cmdftp -s:C:\ftpfile.bat

这是我的批处理代码的代码:

open FTP address
USERNAME
PASSWORD
bin
mput C:\user\*
bye

由于从现在开始。

Answer 1:

你有没有试过用prompt之前mput以关闭交互模式?

open FTP address
USERNAME
PASSWORD
prompt
bin
mput C:\user\*
bye


文章来源: Batch file uploading entire folder to FTP