I have a few directories within a directory and I was wondering if there is a simple way to merge the directories or take all files within and put them into a new directory? Thanks
Do you have shell access? You can easily move the files using a bash command. It's possible with php, but it would require a bunch of looping, and would take a while to write and execute the script to do it. If you get into the folder you want to move the files from, something like this should work: mv * /new/directory/ If you're not afraid of overwriting anything you can use: mv -f * /new/directory/ If you just want to copy the files: cp * /new/directory/ or cp -f * /new/directory/
If his web user has permissions to access the files, he could just use one of system(), passthru() . . . etc to execute the commands you provided. Assuming that this is in fact a linux/unix system?