2

We are using alfresco-4.2.2 version.we are uploading the zip files.Let's say we have uploaded test.zip. I want to know the zip file information like how many files inside the zip file.when i search forms its saying the files will be stored in C:\Alfresco\alf_data\contentstore path and stored in .bin format and couldn't find the zip file that have uploaded.Is there any way to find this information?

user739115
  • 1,117
  • 5
  • 20
  • 41

1 Answers1

1

You are clearly not familiar with alfresco development, so I think the first thing for you to do is to check Jeff Potts' Tutorial. Once you got familiar with Content Models, custom Behaviours and custom Actions, You can do the following :

  • Design your custom model (type or aspect) in order to include the extra meta information you which (ex. file size, number of included files, compression ratio, ....)

  • Either develop a Rule Action to extract those meta data from the file and set it to its properties (you will need then to setup that rule on each and every folder you want ....)

  • Or simply do the trick with custom behaviors onAddAspect for instance, if the aspect is my:zipfile!

Younes Regaieg
  • 4,156
  • 2
  • 21
  • 37