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 ?
Button to a Custom Filtered list
Moderators: Hacker, petermad, Stefan2, white
Re: Button to a Custom Filtered list
One filter
Two or more
Code: Select all
cd C:\path\to\files\*.png
Code: Select all
cd C:\path\to\files\*.png; *.jpg; *.gif
Re: Button to a Custom Filtered list
Thank you, this is what I wanted.ts4242 wrote: 2019-01-26, 03:34 UTC One filterTwo or moreCode: Select all
cd C:\path\to\files\*.png
Code: Select all
cd C:\path\to\files\*.png; *.jpg; *.gif