Is there a way to create a file system like this. Whenever a new user is registered a folder with unique ID is created for storing images in the filesystem for that user. If he/she creates a new album for pictures another new folder will be created inside that unique folder for the user.
Thank U.
Is there a way to create a file system like this. Whenever a new
Share
You can do that with server-side scripting. For example, with php you can create a new directory using the
mkdir()function: http://php.net/manual/en/function.mkdir.php