FTP Batch File Help Please?

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
sandyzoo
Posts: 1
Joined: 28 Oct 2010 02:32

FTP Batch File Help Please?

#1 Post by sandyzoo » 28 Oct 2010 02:49

I am using the GetFiles.Bat file, which I got from this forum, and amended for my purposes. It has been working brilliantly for various file feeds provided by our suppliers.

One new supplier, however, produces a very large number of files each day, and the "file names" variable length exceeds that limit very quickly, causing an error.

In order to prevent this, i am wondering if it is possible to add some lines to this files that moves the remote files (into a subfolder called Archive) when it has downloaded them. In other words, using the same file list as it builds to download the files, can this file also be made to move those same files on the FTP server into a sub-folder?

The batch file I am using is as follows:

Code: Select all

@Echo Off

REM -- Define File Filter, i.e. files with extension .txt
Set FindStrArgs=/E /C:".xml"

REM -- Extract Ftp Script to create List of Files
Set "FtpCommand=ls"
Call:extractFileSection "[Ftp Script 1]" "-">"C:\Inbound\Feed1\%~n0.ftp"
Rem Notepad "C:\Inbound\Feed1\%~n0.ftp"

REM -- Execute Ftp Script, collect File Names

Set "FileList="
For /F "Delims=" %%A In ('"Ftp -v -i -s:"C:\Inbound\Feed1\%~n0.ftp"|Findstr %FindStrArgs%"') Do (
    Call Set "FileList=%%FileList%% "%%A""
)

REM -- Extract Ftp Script to download files that don't exist in local folder
Set "FtpCommand=mget"
For %%A In (%FileList%) Do If Not Exist "%%~A" Call Set "FtpCommand=%%FtpCommand%% "%%~A""
Call:extractFileSection "[Ftp Script 1]" "-">"C:\Inbound\Feed1\%~n0.ftp"
Rem Notepad "C:\Inbound\Feed1\%~n0.ftp"

For %%A In (%FtpCommand%) Do Echo.%%A

REM -- Execute Ftp Script, download files
ftp -i -s:"C:\Inbound\Feed1\%~n0.ftp"
Del "C:\Inbound\Feed1\%~n0.ftp"
GOTO:EOF


:extractFileSection StartMark EndMark FileName -- extract a section of file that is defined by a start and end mark
::                  -- [IN]     StartMark - start mark, use '...:S' mark to allow variable substitution
::                  -- [IN,OPT] EndMark   - optional end mark, default is first empty line
::                  -- [IN,OPT] FileName  - optional source file, default is THIS file
:$created 20080219 :$changed 20100205 :$categories ReadFile
:$source http://www.dostips.com
SETLOCAL Disabledelayedexpansion
set "bmk=%~1"
set "emk=%~2"
set "src=%~3"
set "bExtr="
set "bSubs="
if "%src%"=="" set src=%~f0&        rem if no source file then assume THIS file
for /f "tokens=1,* delims=]" %%A in ('find /n /v "" "%src%"') do (
    if /i "%%B"=="%emk%" set "bExtr="&set "bSubs="
    if defined bExtr if defined bSubs (call echo.%%B) ELSE (echo.%%B)
    if /i "%%B"=="%bmk%"   set "bExtr=Y"
    if /i "%%B"=="%bmk%:S" set "bExtr=Y"&set "bSubs=Y"
)
EXIT /b


[Ftp Script 1]:S
!Title Connecting...
open ftpsite.com
import
passwordgoeshere

!Title Preparing...
cd customers
lcd C:\Inbound\Feed1
binary
hash

!Title Processing... %FtpCommand%
%FtpCommand%

!Title Disconnecting...
disconnect
bye


I would be very grateful for some help or advice on this.

Paul

Post Reply