Below you can see a script which gets the filename of all attachments in the system. But as @Nic Brough [Adaptavist] said it will be good to share what you're actually trying to achieve.
import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.issue.AttachmentManager; import com.atlassian.jira.issue.attachment.AttachmentConstants; ComponentAccessor.getOfBizDelegator().findAll(AttachmentConstants.ATTACHMENT_ENTITY_NAME).collect({ it.getString("filename") })
You'll need to script something to read every issue and parse each one for all of its attachments. Or possibly read the attachments table in the database. Or read the disk for the actual fields.
It might be more useful if you could tell us why you want this list? Then we can give you the best option.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.