I recently started with delphi and now I want to get all mp3 files from a directory. I want something like the php function glob().

link|improve this question

3  
If you just recently started with Delphi, why are you on Delphi 6? – Mason Wheeler Nov 21 '10 at 16:17
2  
@Mason - Agreed! It's not like Harry Potter, you don't have to start way back at the beginning! – Chris Thornton Nov 22 '10 at 0:23
@Mason Wheeler: because he had a copy lying around, and didn't want to spend 900 Euro's to search for mp3's? – The_Fox Nov 22 '10 at 7:41
@mason this is the version we have at school... Our service desk (system managers) are a bit slow... – dododedodonl Nov 22 '10 at 17:34
feedback

5 Answers

up vote 10 down vote accepted

The old way of doing it is approx:

var
  status : dword;
  sr : TSearchRec;
begin
  status := FindFirst('*.mp3',faAnyFile,sr);
  while status <> 0 do
  begin

     // sr.Name is the filename; add it to a list
     // or something. Note there is no path so you
     // may need to add that back on somewhere

     status := FindNext(sr);
  end;
  SysUtils.FindClose(sr);

  // ...
end;
link|improve this answer
feedback

Try IOUtils.TDirectory.

link|improve this answer
1  
This type doesn't exist in Delphi 6. – Andreas Rejbrand Nov 21 '10 at 15:36
Then use FindFirst etc. as suggested by Bill99 - that's how TDirectory is implemented. – David Heffernan Nov 21 '10 at 16:03
feedback

If additional libraries are ok for you, take a look at the Jedi Code Library.

In unit common\JclFileUtils, there is a compact helper function:

function BuildFileList(const Path: string; 
  const Attr: Integer; const List: TStrings; 
  IncludeDirectoryName: Boolean = False): Boolean;

The JCL is well maintained and includes great extensions and some IDE improvements. The (very easy to use) JCL installer is available at http://sourceforge.net/projects/jcl/

link|improve this answer
feedback

The ancient TFileListBox in the Delphi FileCtrl unit is a good solution.

It has been there since Delphi 1, and About Delphi has a nice example on how to use it.

You can drop it on a form, set Visible = False, and never worry about it.

It supports filtering (for instance on extension), so it will work very nicely with your *.mp3 criterion.

--jeroen

link|improve this answer
feedback

a very nice free component is TFindFile at Delphi Area: http://www.delphiarea.com/products/delphi-components/findfile/

it will give you complete control over searching for files/folders, threaded or non

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.