How can I 'watch' a folder to move a file with a name that will vary from day to day?
The customer uploads a file to our server with the name "mmdd(cyclenumber)", where cycle number varies with no pattern.
I've got a timer that runs a stored procedure every few minutes to see if a file has been uploaded, but I don't know how to make the file name variable like:
Name "F:\upload\" & Format(Now, "mmdd"
& "*.zip" As "G:\Newfile"
How do I get the wildcard to work?
Thanks
The customer uploads a file to our server with the name "mmdd(cyclenumber)", where cycle number varies with no pattern.
I've got a timer that runs a stored procedure every few minutes to see if a file has been uploaded, but I don't know how to make the file name variable like:
Name "F:\upload\" & Format(Now, "mmdd"
How do I get the wildcard to work?
Thanks