Registriert seit: 26. Mai 2004
3.159 Beiträge
|
Re: Probleme mit ExtractFileName
29. Mär 2006, 01:16
Sorry, hast recht! Ist halt schon etwas spät
aber das hier müsste doch zu 100% funktionieren:
Delphi-Quellcode:
var
s1, s2 : String;
begin
s1 := ExtractFileName(FileNames[i]);
s2 := ExtractFileName(FileNames[i+1]);
if (length(s1) > 0) and (length(s2) > 0) then
begin
if s1[1] < s2[1] then
begin
//Bla... Blub...
end;
end
else
// Kein gültiger Dateipfad
end;
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)
|