1752728 Members
5985 Online
108789 Solutions
New Discussion

how to make it work???

 
kabucek
Advisor

how to make it work???

@echo off


set /P my_folder="Please enter folder to zip and FTP: "

if exist %my_folder% goto do_zfile
goto error

:do_zfile

cd %my_folder%

rem .: if your date has '/' in the date, they need to be stripped out.
for /f "delims='/'" %%i in ('%date%') do
set my_date=%%i-%%j-%%k

zip_program /switches *.* %my_date%.zip

set /P my_loc="Please enter FTP site: "
set /P my_id="Please enter your ID: "
set /P my_pass="Please enter your Password: "

echo open %my_loc% > ftp_conn.txt
echo user %my_id% %my_pass%>> ftp_conn.txt
echo binary >> ftp_conn.txt
echo hash >> ftp_conn.txt
echo put %my_date%.zip >> ftp_conn.txt
echo close >> ftp_conn.txt
echo quit >> ftp_conn.txt

ftp -s:ftp_conn.txt

del ftp_conn.txt
del %my_date%.zip

goto done

:error
echo Folder was not found.

:done


------ how to configure that script to make it work with SmartFTP( C:\ProgramFiles....\SmartFTP.exe) and Winzip???-------
-----what are the switches??
1 REPLY 1
Jon Finley
Honored Contributor

Re: how to make it work???

You can use "SmartFTP.exe /?" for help.

Winzip info here:
http://www.memecode.com/docs/winzip.html

Jon
"Do or do not. There is no try!" - Yoda