Search found 6 matches

by k3lvinmitnick.co.cc
23 Jun 2009 21:00
Forum: DOS Batch Forum
Topic: Batch for remote ftp dowlaods
Replies: 7
Views: 10560

WOW ! TKs 2 all,

But, I mean: My file is abDDMMYY.xyz

How can I ?
by k3lvinmitnick.co.cc
17 Jun 2009 22:41
Forum: DOS Batch Forum
Topic: join txt-files
Replies: 7
Views: 12025

Helper wrote:Try:

Code: Select all

copy one.txt + two.txt + three.txt. + ... + n.txt together.txt 

:wink:


Code for multi files ? Because i need join for 1000 files, i must type 1000 times ?
by k3lvinmitnick.co.cc
17 Jun 2009 22:32
Forum: DOS Batch Forum
Topic: Help. I can't open firefox with in a bat!
Replies: 3
Views: 7997

'firefox.exe' is not recognized as an internal or external command,
operable program or batch file.

How ?
by k3lvinmitnick.co.cc
17 Jun 2009 22:22
Forum: DOS Batch Forum
Topic: Rename multiple files
Replies: 2
Views: 6009

Nice topic,
Tks,
by k3lvinmitnick.co.cc
17 Jun 2009 22:15
Forum: DOS Batch Forum
Topic: FTP transfer with .bat file
Replies: 4
Views: 8814

Tks, this topic is helful, @ftp -i -s:"%~f0"&GOTO:EOF open 10.20.30.40 abc123 abc !:--- FTP commands below here --- ascii cd receive send "c:\rpt\fileDDMMYY.xyz" disconnect bye But, i want to loop it daily : If system_date=DD then send "c:\rpt\fileDDMMYY.xyz" E.x: I...
by k3lvinmitnick.co.cc
17 Jun 2009 20:30
Forum: DOS Batch Forum
Topic: Batch for remote ftp dowlaods
Replies: 7
Views: 10560

@echo off rem Your FTP username set ftpUser=USERNAME rem Your FTP password set ftpPass=PASSWORD rem Your FTP server IP set ftpIP=192.168.0.2 set ftpFile=%temp%\TempAcc.txt >"%ftpFile%" echo.%ftpUser% >>"%ftpFile%" echo.%ftpPass% >>"%ftpFile%" echo bin >>"%ftpFile%...