Bases: Search embed pictures by name or extension

What I’m trying to do

I want to rename my (picture) attachments that I have not renamed.

ofc i need to identify which and where they are, the note where i attach them is an important and easy indicator of what is the attachment about.

ultimately i want to add keywords to identify unnamed attachment like “pasted” or long numbers. but i struggle to find by extension of embed attachment, or even name

Things I have tried

I start with using the bases to list all files with embed. but struggle to identify by extension

embed: Not empty

embed contains Extension

embed contains “Pasted”

Filter for notes with png embeds:

file.embeds.filter(value.asFile().ext == "png")

Filter for notes whose embeds that have “Pasted” in their filename:

file.embeds.filter(value.contains("Pasted"))

And this might make it easier to find specific embeds in your table…
In a column, display each note’s png embeds without showing other embeds:

file.embeds.filter(value.asFile().ext == "png")

(It’s the same formula as above, but as a property formula, not a filter.)

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.