Okay, well I have the whole file name but the client decided to include timestamps to the end of each name so it really got me confused on how to do this. It was previously a static name plus the current date..
e.g. CompanyNameOBound2012224.zip
I accomplished this simply..
filename = "CompanyNameOBound" + yr + month + day + ".zip"
But now they included a time stamp..
e.g. CompanyNameOBound2012224701611.zip
Any ideas on how to tackle this? Thanks