New in Symfony 6.2: Finder Improvements

The Finder component provides utilities to find files/directories via multiple filter and sort methods. In Symfony 6.2 we're adding new sorting methods to it.

Contributed by
Robert Fischer
in #46591.

The Finder component already includes methods to filter files/directories by file extension and or/size, but you couldn't sort results based on them. In Symfony 6.2 we've added new methods to sort by file extension and/or size:

use Symfony\Component\Finder\Finder;

$finder = (new Finder())
    ->in(__DIR__)
    // ...
    ->sortByExtension()
    ->sortBySize();

Contributed by
Hubert Moreau
in #46126.

In Symfony 6.2 we've also added a new method to sort files/directories by their names in a case-insensitive way. Internally, it uses the strcasecmp() PHP function to perform the sorting:

$finder = (new Finder())
    ->in(__DIR__)
    // ...

    // this sorts results case-insensitive and using the "machine sorting" algorithm
    // e.g. "file1.txt", "File10.txt", "File2.txt", "file3.txt"
    ->sortByCaseInsensitiveName()

    // this sorts results case-insensitive and using the "natural sorting" algorithm
    // e.g. "file1.txt", "File2.txt", "file3.txt", "File10.txt"
    ->sortByCaseInsensitiveName(true);

Because of their own nature, all these new methods need to retrieve all results before sorting them, so they can impact performance.

            <hr style="margin-bottom: 5px" />
            <div style="font-size: 90%">
                <a href="https://symfony.com/sponsor">Sponsor</a> the Symfony project.
            </div>

https://symfony.com/blog/new-in-symfony-6-2-finder-improvements?utm_source=Symfony%20Blog%20Feed&utm_medium=feed

Utworzony 3y | 7 lis 2022, 12:20:08


Zaloguj się, aby dodać komentarz

Inne posty w tej grupie

New in Symfony 7.3: Extra Runtime Dot Env Files

Contributed by Nathan Page in

1 maj 2025, 08:40:12 | Symfony
SymfonyOnline June 2025: Where Have the Women of Tech History Gone?

SymfonyOnline June 2025 is almost here, starting in almost 2 months on:

June 10-11: Workshop days. It is possible to attend 1 two-day training or 2 one-day trainings. June 12-13: Online confe

30 kwi 2025, 14:20:02 | Symfony
New in Symfony 7.3: Arbitrary User Permission Checks

Contributed by Nate Wiebe in

30 kwi 2025, 09:30:12 | Symfony
SymfonyOnline June 2025: Automate Everything with Your Personal Army of Robots

SymfonyOnline June 2025 is almost here, starting in almost 2 months on:

June 10-11: Workshop days. It is possible to attend 1 two-day training or 2 one-day trainings. June 12-13: Online confe

29 kwi 2025, 15:10:03 | Symfony
New in Symfony 7.3: Slug and Twig Constraints

The Validator component provides dozens of constraints ready to use in your applications. In Symfony 7.3, we've added two new constraints to the list.

Slug Constraint

29 kwi 2025, 10:30:02 | Symfony
SymfonyOnline June 2025: Multi-Tenantize the Symfony components

SymfonyOnline June 2025 is almost here, starting in almost 2 months on:

June 10-11: Workshop days. It is possible to attend 1 two-day training or 2 one-day trainings. June 12-13: Online confe

28 kwi 2025, 15:50:10 | Symfony
New in Symfony 7.3: Twig Extension Attributes

Contributed by Jérôme Tamarelle in

28 kwi 2025, 08:50:09 | Symfony