I am super rusty in PHP after teaching English for two years and I don't think I knew how to do this before. So, please help me learn and understand.
I need to take a directory like: $saveDir = "c:/home/www/temp/"
and then drill down through whatever directories might be in it until I get to a directory with only files.
I am certain that a directory will contain either 1) another directory or 2) files. The goal eventually is to get down to the files and then copy them to some other place, but drilling down through the possible directories and checking for new directories or files is where I am stumbling.
My pseudocode thinking is this:
foreach ($item) {
if(is_dir($item)) {
ch_dir($item);
} else {
parse_dir($item); // <- not sure how to use this function
}
}
Something like that, but I honestly don't have much clue past that.
TIA!