Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save patrickmaciel/5e30cae73ace50bd04af to your computer and use it in GitHub Desktop.
Save patrickmaciel/5e30cae73ace50bd04af to your computer and use it in GitHub Desktop.
Iterate files by extension in specific folder
$this->info(base_path() . '/*.xls');
$iterator = new \GlobIterator(base_path() . '/*.xls', \FilesystemIterator::KEY_AS_FILENAME);
$array = iterator_to_array($iterator);
foreach ($array as $file) {
echo $file->getFileName();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment