What do i do if i only wanna show some specified files?
Moderators: Hacker, petermad, Stefan2, white
What do i do if i only wanna show some specified files?
excuse my english.
for example. if i just wanna show all the files except *.obj ,what do i do???
for example. if i just wanna show all the files except *.obj ,what do i do???
Simple---
2dynad
Hello, welcome aboard!
- In the "View" menu, choose "Custom…"
- You get a small dialogue; in the upper field of that box, there is *.* by default. Just add a pipe and *.obj, to get a line like :
*.*|*.obj >>> OK
All files will be displayed, except the *.obj ones.
- You must do the same for each panel (right / left when active)
Kind regards,
Claude
Clo

- In the "View" menu, choose "Custom…"
- You get a small dialogue; in the upper field of that box, there is *.* by default. Just add a pipe and *.obj, to get a line like :
*.*|*.obj >>> OK
All files will be displayed, except the *.obj ones.
- You must do the same for each panel (right / left when active)

Claude
Clo
#31505 Traducteur Français de T•C French translator Aide en Français Tutoriels Français English Tutorials
This Script for Aezays TC-Script shows all files except those with the current selected extension:
Place the cursor on any OBJ-file, start the script... all OBJ-files will be hidden.
Code: Select all
PostCmd(cm_SelectCurrentExtension);
PostCmd(cm_ExchangeSelection);
PostCmd(cm_ShowOnlySelected);
PostCmd(cm_ClearAll);
Simple solution for this challenge:Place the cursor on any OBJ-file, start the script... all OBJ-files will be hidden.
make a button or starter menu entry with
Command: cd
Parameter: |*.%E
That's is all.
BTW: I use it for showing only files with EXT under cursor.
(Parameter: *.%E [without pipe])
and bound this starter menu entry with CTRL+ALT+F10 (because CTRL+F10 toggles back to showing all files)
The doorstep to the temple of wisdom is a knowledge of our own ignorance. Benjamin Franklin
- SanskritFritz
- Power Member
- Posts: 3693
- Joined: 2003-07-24, 09:25 UTC
- Location: Budapest, Hungary
2SanskritFritz
Oh I read this hint in the german forum
Kontextbezogene Dateifilter: Erweiterung/gibt's Schon?

BTW: You can change folder and mask files with one command (in button, starter menu, directory hotlist)
e.g. (example from my directory hotlist)
Command: cd %$FONTS%\*.fon *.ttf
goes to fonts-folder and shows all FON and TTF files only.

Oh I read this hint in the german forum
Kontextbezogene Dateifilter: Erweiterung/gibt's Schon?


BTW: You can change folder and mask files with one command (in button, starter menu, directory hotlist)
e.g. (example from my directory hotlist)
Command: cd %$FONTS%\*.fon *.ttf
goes to fonts-folder and shows all FON and TTF files only.


The doorstep to the temple of wisdom is a knowledge of our own ignorance. Benjamin Franklin