I am working on a program for a file repository. it is going to need to be able to have a main root folder, then an undetermined amount of sub folders in which they can store files. I'm stuck between using a real folder structure to store the files, or storing all the files in one folder and using a database with a table for folders and a table for files and using PHP to create a folder / file list
I am going to need to set permissions on the individual files / folders as there will be multiple users.
Any thoughts?