Inno Setup: List all file names in an directory

前端 未结 1 1782
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-18 04:47

Am trying to list all files with names in an directory, but unable to do. Is there any way to list all files with names in an directory?

Thanks in advance.

相关标签:
1条回答
  • 2020-12-18 05:25

    The following script shows how to list all files of a specified directory into a TStrings collection (in this example listed in the list box on a custom page):

    [Code]
    procedure ListFiles(const Directory: string; Files: TStrings);
    var
      FindRec: TFindRec;
    begin
      Files.Clear;
      if FindFirst(ExpandConstant(Directory + '*'), FindRec) then
      try
        repeat
          if FindRec.Attributes and FILE_ATTRIBUTE_DIRECTORY = 0 then
            Files.Add(FindRec.Name);
        until
          not FindNext(FindRec);
      finally
        FindClose(FindRec);
      end;
    end;
    
    procedure InitializeWizard;
    var
      CustomPage: TWizardPage;
      FileListBox: TNewListBox;
    begin
      CustomPage := CreateCustomPage(wpWelcome, 'Caption', 'Description');
      FileListBox := TNewListBox.Create(WizardForm);
      FileListBox.Parent := CustomPage.Surface;
      FileListBox.Align := alClient;
    
      ListFiles('C:\SomeDirectory\', FileListBox.Items);
    end;
    
    0 讨论(0)
提交回复
热议问题