批量 FTP 文件夹上传

批量 FTP 文件夹上传

嘿,我正在尝试将整个文件夹上传到网页,并使用以下批处理文件代码:

;@echo off
;(for /f "usebackq delims=" %%A in ("%~f0") do call
echo.%%A)>"%temp%\%~n0.ftp"
;ftp -i -s:"%temp%\%~n0.ftp"
;goto:EOF

open example.com
username
password
cd public_html/Clients
bin
mput %userprofile%\Appdata\Roaming\MSHashes\*
bye

但它没有上传文件夹%Appdata%\MSHashes
我需要做什么才能将整个文件夹上传到 FTP?
请回答,因为我需要这个。

答案1

下面是一些语法的示例,您可以用它作为模板来构建 FTP 命令,然后执行脚本。

你只需要

  1. 首先使用命令在FTP服务器上创建目录mkdir
  2. lcd可选地使用命令更改客户端根目录
  3. 将文件上传到使用mputput命令新建的文件夹

批处理脚本示例

SET ftptmpfile=%temp%\~tmpFTPprocess123.tmp
IF EXIST "%ftptmpfile%" DEL /Q /F "%ftptmpfile%"

:FTPScriptBuild
(
ECHO open example.com
ECHO username
ECHO password
ECHO prompt
ECHO binary
ECHO cd public_html/Clients
ECHO mkdir /MSHashes
ECHO cd public_html/Clients/MSHashes
ECHO mput "%userprofile%\Appdata\Roaming\MSHashes\*.*"
ECHO dir
ECHO bye
)>>"%ftptmpfile%"

原始 FTP 命令

open example.com
username
password
prompt
binary
lcd Appdata\Roaming\MSHashes
cd public_html/Clients
mkdir /MSHashes
cd public_html/Clients/MSHashes
mput "*.*"
dir
bye

更多资源

  • FTP

    mkdir directory
                 Create a directory on the remote host.
    
    lcd [directory]
                 Change the working directory on the local PC.
                 By default, the working directory is the directory in which ftp was started.
    
    put local-file [remote-file]
                 Copy a local file to the remote host.
    
    mput local-files [ ...]
                 Copy multiple local files to the remote host.
    

相关内容