Search found 4 matches

by mkoz28
19 Dec 2013 10:06
Forum: DOS Batch Forum
Topic: Delete local files if files dont exist on remote FTP server
Replies: 0
Views: 6039

Delete local files if files dont exist on remote FTP server

Hi, I is it possible using the script below to delete the local files if they no longer exist on the remote directory? Currently this downloads all new files but wont delete files that no longer exist on the ftp server? @Echo Off REM -- Define File Filter, i.e. files with extension .txt set FindStrA...
by mkoz28
19 Dec 2013 09:54
Forum: DOS Batch Forum
Topic: set FindStrArgs=/x "..*\...*" Recursive?
Replies: 1
Views: 2666

set FindStrArgs=/x "..*\...*" Recursive?

Hi, I am using the batch script from this site to download FTP files from my server. Is it possible to have it recursively go through each folder and download its contents? @Echo Off REM -- Define File Filter, i.e. files with extension .txt set FindStrArgs=/x "..*\...*" REM -- Extract Ftp ...
by mkoz28
17 Dec 2013 10:31
Forum: DOS Batch Forum
Topic: Download new files from FTP server different file types
Replies: 1
Views: 3059

FTP Files wont download?

Hi, The batch code I got from this site works for all file except .pdf's. Any idea why this is? If I change the file extension to .pdfx it then downloads???? @Echo Off REM -- Define File Filter, i.e. files with extension .txt Set FindStrArgs=/I /E ".ftp" REM -- Extract Ftp Script to create...
by mkoz28
17 Dec 2013 09:42
Forum: DOS Batch Forum
Topic: Download new files from FTP server different file types
Replies: 1
Views: 3059

Download new files from FTP server different file types

Hi, I am using the code below to download new files from my ftp server. I have multiple file types and for some reason I set the "findstrargs" to include .pdf and it is not downloading? Any ideas? It does get the .txt files. Is there a way maybe just to get all files? No arguments? @Echo O...