Expand my Community achievements bar.

SOLVED

Limiting uploads by size at folder level in AEM Assets

Avatar

Level 2

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.

1 Accepted Solution

Avatar

Correct answer by
Level 8

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....

 

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...

 

 

 

 

View solution in original post

2 Replies

Avatar

Community Advisor

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!

Avatar

Correct answer by
Level 8

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....

 

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...