hi...need .bat file creation helm...im stuck!!
hi all i wanna creat .bat file that will connect my ftp account.
so this is what i created....
and i dont know what to do...next...its connect to the FTP and dont wright the user and .etc
Code:
@echo off
ftp ftp.members.lycos.co.uk
User
Password
binary
get Code.rar
:done
Re: hi...need .bat file creation helm...im stuck!!
What? Are the commands wrong or do you not know how to create an FTP file?
Re: hi...need .bat file creation helm...im stuck!!
I think I posted the solution before for you?
You need to use a script for the ftp login as the bat file will not process any other lines after the initial FTP one. so it will never get to the login credentials.
Code:
'Command prompt code to execute:
ftp -s:c:\ftpscript.bat
'Your script file (c:\ftpscript.bat) contents:
@echo off
ftp ftp.members.lycos.co.uk
User yourusername
Pwd 8888888
binary
get Code.rar
:done
Re: hi...need .bat file creation helm...im stuck!!
This part would be in VB or typed in to the Run dialog box. Depends on how you want to execute this?
VB Code:
'Run Dialog box or Command window -
FTP -s:c:\ftpscript.bat
VB Code:
'VB -
Shell "cmd.exe FTP -s:c:\ftpscript.bat"