Post a reply

Before posting, please read how to report bug or request support effectively.

Bug reports without an attached log file are usually useless.

Options
Add an Attachment

If you do not want to add an Attachment to your Post, please leave the Fields blank.

(maximum 10 MB; please compress large files; only common media, archive, text and programming file formats are allowed)

Options

Topic review

martin

Only think I can imagine is to use some smart shell scripting to move away the files you want to download to some temporary directory (using scripting command call). Then download the content of the temporary directory. Then move the files back to original directory.
MKNENI

Unfortunately no. I will have to go by mtime of the file.

Thanks
MKNENI
martin

Re: how to ftp only the files modifed with in a time frame

Does the log file name include the time?
MKNENI

how to ftp only the files modifed with in a time frame

using sftp protocal.

Did some search but couldn't find a solution.

I need to download all the log files modified between May 10th 3.00 pm to 6.00 pm
Is there a way to do this.

This script downloads all the log files.
open userid:password@server
option transfer ascii
get *.log
close

thanks