Show Folders in 'Show\Custom'
Moderators: Hacker, petermad, Stefan2, white
Show Folders in 'Show\Custom'
Is there a way that I can have folders that match a custom "show" option be listed as well?
- ghisler(Author)
- Site Admin
- Posts: 50532
- Joined: 2003-02-04, 09:46 UTC
- Location: Switzerland
- Contact:
Re: Show Folders in 'Show\Custom'
To show/hide folders in Show -> Custom, you need to end the name with a backslash.
For example, to only show txt and docx files, and folders where the name starts with a and f, use this syntax:
*.txt *.docx a*\ f*\
To exclude certain files or folders by name, put the patterns after a vertical line | like this:
*.txt *.doc | a*\ f*\
This will show all txt and docx files, plus all folders except for those starting with an a or f.
For example, to only show txt and docx files, and folders where the name starts with a and f, use this syntax:
*.txt *.docx a*\ f*\
To exclude certain files or folders by name, put the patterns after a vertical line | like this:
*.txt *.doc | a*\ f*\
This will show all txt and docx files, plus all folders except for those starting with an a or f.
Author of Total Commander
https://www.ghisler.com
https://www.ghisler.com
Re: Show Folders in 'Show\Custom'
THANK YOU!