My requirement is,In my project,i maintained a folder which have set of images which are uploaded by user.but user can upload same named image n number of times.to overcome this overhead i planned to maintain versioning to each image which are same (same named). please advice me right solution –
|
|
There is no right solution for all purposes. You can build version control yourselg, renaming old files ans moving them to separate subdirectory, or you can tap existing version control systems like git / svn / cvs / rcs / ccss / mercurial - some of them have java libraries available and they all suck to different extent. Just pick one that you like. Another alternative would be to use some CMS system, but usually they suck ever more. Why do you need to keep track of older versions anyway? |
|||||
|
|
How about indexing them all using the database (if you have one)? When an user uploads the file, save it with some scrambled name like |
|||
|
|