如何在批处理脚本中修复错误“%%我此时意外”?

问题描述 投票:0回答:1

我试图从FTP服务器下载一些文件,并根据文件名将它们放在不同的文件夹中。

使用:

FOR /F "tokens=1 delims=" %%i IN (%binpath%inputfilelist.txt) DO ECHO. get %%i >> %binpath%unixftp_get1.txt

我收到错误:

%%我此时出乎意料

我已经检查了inputfilelist.txt中的文件,有2文件可用。

REM **********************Determine input file count*******************************************

SET target=TXT
CHDIR /d %binpath%
find /c  "%target%" < %binpath%inputfilelist.txt >  %binpath%inputfilecount.txt 
SET /p inputfile_cnt=<%binpath%inputfilecount.txt

IF %inputfile_cnt%!==!0 GOTO PROCEED

IF %inputfile_cnt%==0 GOTO END

:PROCEED

REM ******************** Dynamically create the ftp get commands file and download the files*************************
copy %binpath%unix_ftp.config %binpath%unixftp_get1.txt

FOR /F "tokens=1 delims=" %%i IN (%binpath%inputfilelist.txt) DO ECHO. get %%i >> %binpath%unixftp_get1.txt

ECHO. bye >>  %binpath%unixftp_get1.txt

ftp -v -s:"%binpath%unixftp_get1.txt" %server% >> "%logpath%%ftp_log%"

预期的结果是文件名称abc.txt需要附加在文件unixftp_get1.txt中。

batch-file ftp
1个回答
0
投票

如果你看看这一行:

IF %inputfile_cnt%!==!0 GOTO PROCEED

它不会GOTO PROCEED,因为你的比较期待#!匹配!0,(其中#是包含TXT的线数),但它显然永远不会。

要解决这个问题,您通常会使用以下语法:

IF NOT "%inputfile_cnt%"=="0" GOTO PROCEED

然后,您可以将其下方的行更改为:

GOTO END

以下是对您的代码段的重写,请尝试并根据需要提供反馈:

REM ************************ Determine input file count ************************
SET "target=TXT"
CD /D "%binpath%"

FOR %%A IN (logpath,ftp_log)DO IF NOT DEFINED %%A GOTO END

FOR %%A IN ("inputfilelist.txt","unix_ftp.config","%logpath%"
)DO IF NOT EXIST "%%~A" GOTO END

FOR /F %%A IN ('FIND /C "%target%"^<"inputfilelist.txt"'
)DO IF "%%A"=="0" GOTO END

:PROCEED
REM *** Dynamically create the ftp get commands file, and download the files ***
COPY /Y "unix_ftp.config" "unixftp_get1.txt"

(   FOR /F "DELIMS=" %%A IN ("inputfilelist.txt")DO ECHO get %%A
    ECHO bye
)>>"unixftp_get1.txt"

ftp -v -s:"unixftp_get1.txt" %server% >>"%logpath%%ftp_log%"
© www.soinside.com 2019 - 2024. All rights reserved.