Veriftying ftp downloads

  • Thread starter rdemyan via AccessMonster.com
  • Start date
R

rdemyan via AccessMonster.com

I have code that downloads .xls or .mdb (tables only) files from an ftp site.

Should I be trying to verify that the downloads were accomplished error free.

If so, how.

Thanks.
 
A

Albert D.Kallal

rdemyan via AccessMonster.com said:
I have code that downloads .xls or .mdb (tables only) files from an ftp
site.

Should I be trying to verify that the downloads were accomplished error
free.

If so, how.

Thanks.

I agree, the above is a problem, since error checking on ftp is weak, if
present at all.

I update my clients files all the time via FTP, and I experienced a few
problems.

I would consider zipping the file. Then when you un-zip the file, if the
data is corrupted, then *usually* the zip utility will tell you this....
 
T

Tony Toews

rdemyan via AccessMonster.com said:
I have code that downloads .xls or .mdb (tables only) files from an ftp site.

Should I be trying to verify that the downloads were accomplished error free.

You could also compare the file size although Zip would be better as
it does CRC checking.

There are some file size API code at either the API section at the
Access Web at www.mvps.org/access or vbnet.mvps.org.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
 
R

rdemyan via AccessMonster.com

Thanks for the replies.

Unfortunately like many other businesses, zip files are now removed from any
e-mails received.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top