Filter file name starts with "$"

Hello developers,

I have actitivie who read all files in folder.
I would like to filter files where start with “$”

image

For delete the tempories files.

Do you have an idea ?

Thanks for your returns !

In filter
Use
“$*”

1 Like

it’s the opposite sorry

I want all filenames not starting with “$”

Alright, no problem

For this, using For Each File in Folder you can put if statement in body and check if file starts or not with $

Like this

Not ArticlesFile.Name.startsWith(“$”)

In positive case, do what you want to do

1 Like

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