Button to a Custom Filtered list

English support forum

Moderators: Hacker, petermad, Stefan2, white

Post Reply
Lare2
Junior Member
Junior Member
Posts: 15
Joined: 2010-12-05, 07:59 UTC

Button to a Custom Filtered list

Post by *Lare2 »

I would like to create a button that will take me to a specific folder with a custom filtered list.

for example

Location: C:\path\to\files\
Filter: *.png

I would like a button that when clicked would take me to "C:\path\to\files\" with only "png" files listed.

Is that possible ?
User avatar
ts4242
Power Member
Power Member
Posts: 2081
Joined: 2004-02-02, 20:08 UTC
Contact:

Re: Button to a Custom Filtered list

Post by *ts4242 »

One filter

Code: Select all

cd C:\path\to\files\*.png
Two or more

Code: Select all

cd C:\path\to\files\*.png; *.jpg; *.gif
Lare2
Junior Member
Junior Member
Posts: 15
Joined: 2010-12-05, 07:59 UTC

Re: Button to a Custom Filtered list

Post by *Lare2 »

ts4242 wrote: 2019-01-26, 03:34 UTC One filter

Code: Select all

cd C:\path\to\files\*.png
Two or more

Code: Select all

cd C:\path\to\files\*.png; *.jpg; *.gif
Thank you, this is what I wanted.
Post Reply