Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
CD erstelldatum lesen
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  3 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Thomas Krohn  
View profile   Translate to Translated (View Original)
 More options Jan 2 2001, 5:43 pm
Newsgroups: de.comp.lang.delphi.misc
From: Thomas Krohn <N4PL...@compuserve.de>
Date: Tue, 02 Jan 2001 23:47:15 +0100
Local: Tues, Jan 2 2001 5:47 pm
Subject: CD erstelldatum lesen
Wie kann ich das Erstelldatum einer CD lesen. Im Windows Explorer wird
es richtig angezeigt, aber mit Finfile records kriege ich bloss das
erstelldatum der ersten Datei/Verzeichnisses. In den API Funktionen find
ich auch nichts...

Hmmm
Krohni


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Michael Winter  
View profile   Translate to Translated (View Original)
 More options Jan 4 2001, 5:11 pm
Newsgroups: de.comp.lang.delphi.misc
From: Michael Winter <delphi....@gmx.net>
Date: Thu, 04 Jan 2001 22:34:32 +0100
Local: Thurs, Jan 4 2001 4:34 pm
Subject: Re: CD erstelldatum lesen
Thomas Krohn schrieb:

> Wie kann ich das Erstelldatum einer CD lesen.

procedure TForm1.Button3Click(Sender: TObject);
var
  SR: TSearchRec;
begin
  if FindFirst('e:\*', faVolumeID, SR)=0 then
    ShowMessage(DateTimeToStr(FileDateToDateTime(SR.Time)))
  else
    ShowMessage('Oops');
  FindClose(SR);
end;

-Michael


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Thomas Krohn  
View profile   Translate to Translated (View Original)
 More options Jan 5 2001, 7:52 am
Newsgroups: de.comp.lang.delphi.misc
From: Thomas Krohn <N4PL...@compuserve.de>
Date: Fri, 05 Jan 2001 13:54:22 +0100
Local: Fri, Jan 5 2001 7:54 am
Subject: Re: CD erstelldatum lesen
Nun gibt es aber anscheinend CDs die keine VolumenDatei besitzen, denn
hier bekomme ich die Antwort Datei nicht vorhanden.
Das Tool von Ahead gibt mir jedoch trotzdem die korrekte Erstellzeit der
CD aus. Und das auch wenn es sich um eine nicht mit Nero gebrannte oder
Zeitungs CD handelt. Da muss doch noch ein Trick existieren.
Sind die Interrupts des MSCDEX unter Windows auch irgendwie vorhanden ?
oder gibt es hier eigene Interruptabfragen ?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »