Re: reading IECache files
From: Nina Harris (sas_at_mailinator.com)
Date: 07/29/04
- Next message: Karl E. Peterson: "Re: reading IECache files"
- Previous message: Nina Harris: "Re: reading IECache files"
- In reply to: Karl E. Peterson: "Re: reading IECache files"
- Next in thread: Karl E. Peterson: "Re: reading IECache files"
- Reply: Karl E. Peterson: "Re: reading IECache files"
- Messages sorted by: [ date ] [ thread ]
Date: Fri, 30 Jul 2004 01:32:16 +0300
Karl E. Peterson wrote
> Right. Download in the sense used here means "read it from the wire" as
opposed to
> the disk. The fact that the wire is cached on the disk isn't something
you should
> need to worry about. I suppose, though, the original source may have been
marked
> such that it's always expired? Hmmm, that could mean you'd always be
grabbing the
> original source.
>
> Maybe you need to say what the "intranet process" actually is? I sense
that
> otherwise, we'll just be talking past each other.
the process runs various searches across internal servers and returns data
to the ie screen
I am after just a small piece of stringdata that appears in just a few
files, where I know the name of the starting portion of the filename but it
is not actually a url and it does not end in something I can predict,
meaning that the end part in the cache is made up of symbols and numbers
the size of the file that contains the data I want also varies
as I mentioned to randy, it looks like this little piece would give me the
filenames from the cache
Private Function GetStrFromPtrA(ByVal lpszA As Long) As String
GetStrFromPtrA = String$(lstrlenA(ByVal lpszA), 0)
Call lstrcpyA(ByVal GetStrFromPtrA, ByVal lpszA)
Debug.Print GetStrFromPtrA
End Function
am not sure how I would use UrlDownloadToFile as I can not intercept or
repeat anything in the process that the person would have done in the search
application, I simply wish to capture the string and write it to my report
server
- Next message: Karl E. Peterson: "Re: reading IECache files"
- Previous message: Nina Harris: "Re: reading IECache files"
- In reply to: Karl E. Peterson: "Re: reading IECache files"
- Next in thread: Karl E. Peterson: "Re: reading IECache files"
- Reply: Karl E. Peterson: "Re: reading IECache files"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|