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
Raja Bhandari 16Raja Bhandari 16 

how to restrict upload of file in salesforce for only Account object and only pdf files ?

Raj VakatiRaj Vakati
Try this code
 
trigger CheckAttachmentName on Attachment (before insert) {
    for (Attachment att:Trigger.new)
    {
        String parentObjId = att.ParentId;
        if(!parentObjId.startsWith('001') && !att.Name.toLowerCase().contains('.pdf'))
        {
            att.addError('Cannot upload file with name containing ');
        }
    }
    
    
}