I am developing a social networking website and need to figure out a simple and intuitive way to store user-uploaded images on the server filesystem, one that will scale well as the site grows.
What I do is generate a path based on the timestamp of the image upload and name the file with an id corresponding to the record in the database. For example:
/server_img_path/<year>/<month>/<day>/<hour>/<minutes>/<seconds>/<milliseconds>/<img_id>.png
What do you think? Are there any flaws in doing it this way? Are there better ways? Thanks for your advise.
