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.
Unfortunately no. I will have to go by mtime of the file.
Thanks
MKNENI
Does the log file name include the time?
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