function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
dai tran 6dai tran 6 

How many GB user can upload to salesforce?

I create a Public folder allow Guest upload image into salesforce.
How many is Limit memory of folder? 
 
Chandrashekhar GoudChandrashekhar Goud

Hi Tran

Login to work bench there u can see limits of your org.
Workbench url : https://workbench.developerforce.com

  User-added image

dai tran 6dai tran 6
Dev edition File Storage is 20MB.
Pro, Enterprise, Unlimited Edition, How many is File Storage?
 
dai tran 6dai tran 6
I'm sorry. I upload file to Document:          
Document d= new Document();
            d.name=fname;
            d.body=file;
            d.AuthorId = UserInfo.getUserId();
            d.FolderId = '00l6F000002w8pbQAA';
            d.IsPublic = true;  
            insert d;

Is it DATA STORAGE  or FILE STORAGE ?
Chandrashekhar GoudChandrashekhar Goud

Hi

 File storage includes files in attachments, Files home, Salesforce CRM Content, Chatter files (including user photos), the Documents tab, the custom File field on Knowledge articles, and Site.com assets.

You are storing in to documnet so it is File storage .

If it helps you mark as best answer.