Skip to content

Instantly share code, notes, and snippets.

@Tustin
Created April 7, 2017 03:01
Show Gist options
  • Save Tustin/6758cee6e74cfdff81472c39fa4971df to your computer and use it in GitHub Desktop.
Save Tustin/6758cee6e74cfdff81472c39fa4971df to your computer and use it in GitHub Desktop.
<?php
foreach (scandir("scripts") as $dir) {
foreach (scandir("scripts/".$dir) as $file) {
if ($file == '.' || $file == '..') {
continue;
}
$path = pathinfo($file);
if ($path['extension'] == 'full') {
copy("scripts/$dir/" . $file, 'scripts/output/' . $file);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment