
October 8th, 2012, 02:16 PM
|
|
Registered User
|
|
Join Date: Oct 2012
Posts: 4
Time spent in forums: 1 h 41 m 20 sec
Reputation Power: 0
|
|
|
Get file date http
I would get last modified and creation date of a file over http.
I have direct link of that file
Suggestions?
I made by myself.
You need to drag TIdHTTP Indy componet into form then get information from http headers with the following code
IdHTTP1.Head(URL);
IdHTTP1.Response.Date;
or
IdHTTP1.Response.LastModified;
Last edited by ASAP : October 9th, 2012 at 05:00 AM.
Reason: add
|