OK.. new day, new problem. I've changed NOTHING yet today I get
The input line is too long
The input line is too long
What the heck? Nothing changed.
Search found 10 matches
- 10 Oct 2012 13:46
- Forum: DOS Batch Forum
- Topic: FTP Batch Enhancement
- Replies: 18
- Views: 9623
- 09 Oct 2012 12:30
- Forum: DOS Batch Forum
- Topic: FTP Batch Enhancement
- Replies: 18
- Views: 9623
Re: FTP Batch Enhancement
d'oh!
ok, that works ok.. i'd have to take hash out of the ftp section or fill my logs with hash
thanks again for all the help.
ok, that works ok.. i'd have to take hash out of the ftp section or fill my logs with hash
thanks again for all the help.
- 09 Oct 2012 10:00
- Forum: DOS Batch Forum
- Topic: FTP Batch Enhancement
- Replies: 18
- Views: 9623
Re: FTP Batch Enhancement
OK.. that's more what i'm looking for..
where can i safely add this to the existing script?
where can i safely add this to the existing script?
- 09 Oct 2012 09:33
- Forum: DOS Batch Forum
- Topic: FTP Batch Enhancement
- Replies: 18
- Views: 9623
Re: FTP Batch Enhancement
the bat bailed out...
- 09 Oct 2012 09:01
- Forum: DOS Batch Forum
- Topic: FTP Batch Enhancement
- Replies: 18
- Views: 9623
Re: FTP Batch Enhancement
thanks for the suggestion but that didn't work..
i agree though.. this script is very clever. Whoever wrote it is pretty sharp.
i wonder if there is a way to log results w/o modifying the original
i agree though.. this script is very clever. Whoever wrote it is pretty sharp.
i wonder if there is a way to log results w/o modifying the original
Code: Select all
For %%A In (%FtpCommand%) Do Echo.%%A
- 09 Oct 2012 06:58
- Forum: DOS Batch Forum
- Topic: FTP Batch Enhancement
- Replies: 18
- Views: 9623
Re: FTP Batch Enhancement
thanks for super fast reply!
here is the code i used
but it returned:
Tue 10/09/2012
8:39:35.00
mput was uploaded
"filename.zip" was uploaded
how do i get rid of the 'mput was uploaded'
here is the code i used
Code: Select all
For %%A In (%FtpCommand%) Do (Echo.%%A>>ftplog.txt was uploaded)
but it returned:
Tue 10/09/2012
8:39:35.00
mput was uploaded
"filename.zip" was uploaded
how do i get rid of the 'mput was uploaded'
- 09 Oct 2012 06:37
- Forum: DOS Batch Forum
- Topic: FTP Batch Enhancement
- Replies: 18
- Views: 9623
Re: FTP Batch Enhancement
OK.. one more enhancement request I'd to log the results in a text file (e.g., ftplog.txt) the date, time and file names that were uploaded & copied.. Date & time I've got ok.. I just can't make it grab the right variable for the filenames... e.g., "filename1.txt, filename2.txt were upl...
- 02 Oct 2012 08:39
- Forum: DOS Batch Forum
- Topic: FTP Batch Enhancement
- Replies: 18
- Views: 9623
Re: FTP Batch Enhancement
AHHHHHHH
I see!
Working fine now! Thanks so much for your help!
I see!
Working fine now! Thanks so much for your help!
- 02 Oct 2012 08:17
- Forum: DOS Batch Forum
- Topic: FTP Batch Enhancement
- Replies: 18
- Views: 9623
Re: FTP Batch Enhancement
Well, I had already tried that.. I added it to the end of the bat after the 'disconnect' and 'bye' lines..
It just hangs the bat.
It just hangs the bat.
- 02 Oct 2012 07:59
- Forum: DOS Batch Forum
- Topic: FTP Batch Enhancement
- Replies: 18
- Views: 9623
FTP Batch Enhancement
Hi all, I'm using the wonderful FTP Upload batch file that I got from dostips.com located at m It does a great job at uploading only the files that haven't been uploaded... but... I need it to do one more thing... After it has uploaded "file1.zip" and "file2.zip", we need it to M...