Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/unix/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Batch file 自动将多个目录中添加的新文件上载到FTP_Batch File_Ftp - Fatal编程技术网

Batch file 自动将多个目录中添加的新文件上载到FTP

Batch file 自动将多个目录中添加的新文件上载到FTP,batch-file,ftp,Batch File,Ftp,我正在尝试将本地目录中添加到服务器中相同目录的新文件自动上载到FTP 我有没有办法让这一切成为可能?请帮帮我。我将不胜感激 谢谢大家! 只需使用任何支持同步的命令行Windows FTP客户端即可 例如,对于,您可以使用其: 并根据您的需求,循环批处理文件或 对于实时同步,还可以使用 (我是WinSCP的作者)只需使用任何支持同步的命令行Windows FTP客户端即可 例如,对于,您可以使用其: 并根据您的需求,循环批处理文件或 对于实时同步,还可以使用 (我是WinSCP的作者)它不应该被标

我正在尝试将本地目录中添加到服务器中相同目录的新文件自动上载到FTP

我有没有办法让这一切成为可能?请帮帮我。我将不胜感激


谢谢大家!

只需使用任何支持同步的命令行Windows FTP客户端即可

例如,对于,您可以使用其:

并根据您的需求,循环批处理文件或

对于实时同步,还可以使用


(我是WinSCP的作者)

只需使用任何支持同步的命令行Windows FTP客户端即可

例如,对于,您可以使用其:

并根据您的需求,循环批处理文件或

对于实时同步,还可以使用


(我是WinSCP的作者)

它不应该被标记为Java脚本。现在编辑。它不应该被标记为Java脚本。现在编辑。我将尝试winscp,非常感谢。我将尝试winscp,非常感谢。
winscp.com /log=ftp.log /command ^
    "open ftp://username:password@ftp.example.com/" ^
    "synchronize remote c:\local\path /remote/path" ^
    "exit"
winscp.com /log=ftp.log /command ^
    "open ftp://username:password@ftp.example.com/" ^
    "keepuptodate c:\local\path /remote/path" ^
    "exit"