We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
listFiles() should not fetch all files and filter them after then.
For slow FS this is plain evil.
i.e.: glob = lib/*
FTP fetches all dirs in root but could rule all except fot /lib out forehand.
The text was updated successfully, but these errors were encountered:
According to our call you wan't recursive glob patterns like lib/**, not recursive listing with globing.
lib/**
Sorry, something went wrong.
When you are working on this, you might want to look into the Symfony Finder improvements.
http://symfony.com/blog/new-in-symfony-2-2-finder-improvements https://gist.github.com/jfsimon/3230139 symfony/symfony#4061
They are using native commands where available instead of the PHP functions.
We need to check the performance and implementation details.
tristanlins
No branches or pull requests
listFiles() should not fetch all files and filter them after then.
For slow FS this is plain evil.
i.e.: glob = lib/*
FTP fetches all dirs in root but could rule all except fot /lib out forehand.
The text was updated successfully, but these errors were encountered: