Autor Beitrag
*Knust*
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 95



BeitragVerfasst: Sa 18.08.07 22:45 
Moin!

Ich habe mit searchfirst und searchnext nach dateien gesucht und als Suchergebnisse bekomme ich nur . und ..
Der Pfad ist 100% korrekt und als suchdatei habe ich *.* angegeben. In dem Ordner der durchsucht wird sind 6 Bilder mit jpg endung...warum gibt er mir son schwachsinn raus???

Lg

Knust
alias5000
ontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic star
Beiträge: 2145

WinXP Prof SP2, Ubuntu 9.04
C/C++(Code::Blocks, VS.NET),A51(Keil),Object Pascal(D2005PE, Turbo Delphi Explorer) C# (VS 2008 Express)
BeitragVerfasst: Sa 18.08.07 22:49 
Zeig mal bitte deinen Code ;)

Gruß
alias5000

_________________
Programmers never die, they just GOSUB without RETURN
*Knust* Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 95



BeitragVerfasst: Sa 18.08.07 23:13 
ausblenden Delphi-Quelltext
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
s:=findfirst('C:\Dokumente und Einstellungen\blablabla\*.*',fadirectory,f);
try
 while s=0 do
  begin
   if f.attr and fadirectory=fadirectory then bilder.Add(f.name);
   s:=findnext(f);
  end;
 finally
 findclose(f);
end;


bilder is ne tstringlist,s n integer und f n tsearchrec

(Wo fügt man n Quellcode ein?)

Knust

Moderiert von user profile iconmatze: Delphi-Tags hinzugefügt
BenBE
ontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic starofftopic star
Beiträge: 8721
Erhaltene Danke: 191

Win95, Win98SE, Win2K, WinXP
D1S, D3S, D4S, D5E, D6E, D7E, D9PE, D10E, D12P, DXEP, L0.9\FPC2.0
BeitragVerfasst: Sa 18.08.07 23:19 
Mit Delphi-Tags wäre es lesbarer ...

Mit deiner IF-Abfrage suchst Du explizit nur Ordner ...

_________________
Anyone who is capable of being elected president should on no account be allowed to do the job.
Ich code EdgeMonkey - In dubio pro Setting.
*Knust* Threadstarter
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 95



BeitragVerfasst: Sa 18.08.07 23:39 
Ahh macht sinn....Danke!


Knust