I currently have a procedure that loops thru a recordset to determine
what files need to be loaded to my database. The naming convention of
the files has always been accounts.txt, namelist.txt, etc. Within the
procedure I also validate that the file loaded to the server was loaded
within the current day. Everything has run smooth for quite some time
using this method.
Now the vendor has told me he has choice, but to the send the file to
me like accountmmddyyhhmmss.txt. How can I load these files within my
procedure now that a time-stamp has been appended to the file name ? My procedure knows the filename only as account.txt not
accountmmddyyhhmmss.txt.
Thanks in advance !
2007-01-15
07:10:16
·
4 answers
·
asked by
IlliniGeek
1
in
Computers & Internet
➔ Programming & Design
It is written in MS Access/VB 6.0.
Note the file sits out on the LAN as account011506024800.txt. I now need to load the file, but my procedure is looking to load account.txt. How do I change the procedure to indicate that file account011506024800.txt should be loaded. I will never know the exact time of the file so perhaps I just need to use a wildcard character ?
2007-01-15
07:49:00 ·
update #1