Limiting uploads by size at folder level in AEM Assets | Community
Skip to main content
Level 3
February 3, 2021
Solved

Limiting uploads by size at folder level in AEM Assets

  • February 3, 2021
  • 2 replies
  • 2012 views

Hello! we have a requirement where we have to limit uploads by size at folder level. Like one folder can have max 20mb, where other can only take 10mb. Is it possible via configuration. If not any ideas/suggestions on this requirement?

 

Thank you.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by raj_mandalapu

Hi Harish,

 

If you want to set up the size limit for the entire assets folder then you can refer to OOTB configuration,

https://experienceleague.adobe.com/docs/experience-manager-64/assets/managing/managing-video-assets.html?lang=en#publishing-video-assets

 

But, in your case it is not, you need to set it up at the folder level, you can try the below approaches.

 

1. workflow process

Create a separate workflow process step and in the execute method get the file size either by reading the metadata of the file or reading the size of inputStream, etc, if it crosses a certain amount then you can stop uploading the Asset.

You need to add this in the "DAM Asset Upload" workflow.

 

2. If you are going to upload Asset via component, file upload field, then you need to write a custom servlet. you will have full control here.

 

3. We can handle this via Javascript, but it requires some investigation and also must have front end knowledge, check below link only to get some idea, it is not actual solution

http://experience-aem.blogspot.com/2020/04/aem-6540-show-file-size-in-units-in-asset-metadata-editor.html

 

 

 

 

2 replies

Ravi_Pampana
Community Advisor
Community Advisor
February 3, 2021

Hi,

 

Try to add a Custom Process Step in "Dam Upload Asset" (/libs/cq/workflow/content/console.html) workflow which checks the size of uploaded image and allowed size for the folder and continue if satisfies or stop the upload process

 

Hope this helps!

raj_mandalapu
raj_mandalapuAccepted solution
Level 7
February 4, 2021

Hi Harish,

 

If you want to set up the size limit for the entire assets folder then you can refer to OOTB configuration,

https://experienceleague.adobe.com/docs/experience-manager-64/assets/managing/managing-video-assets.html?lang=en#publishing-video-assets

 

But, in your case it is not, you need to set it up at the folder level, you can try the below approaches.

 

1. workflow process

Create a separate workflow process step and in the execute method get the file size either by reading the metadata of the file or reading the size of inputStream, etc, if it crosses a certain amount then you can stop uploading the Asset.

You need to add this in the "DAM Asset Upload" workflow.

 

2. If you are going to upload Asset via component, file upload field, then you need to write a custom servlet. you will have full control here.

 

3. We can handle this via Javascript, but it requires some investigation and also must have front end knowledge, check below link only to get some idea, it is not actual solution

http://experience-aem.blogspot.com/2020/04/aem-6540-show-file-size-in-units-in-asset-metadata-editor.html