For a long time I used simple saved search for filter-out (main menu Show->Custom...) various unimportant and temporary files in Total Commander panels:
Code: Select all
|*.bak *.*$* *.log *.cdc *.adt *.wbk *.err *.~lir *.~~lir *.~jnt *.tmp sync.ffs_db
Code: Select all
fname.rvt
fname.0001.rvt
fname.0002.rvt
fname.0003.rvt
I realized, that it impossible to do with wildcards (am I right?). Then I construct Regex for find this new type of files:
Code: Select all
.\.\d{4}\.(rvt|rfa)
Code: Select all
.\.(bak|log|cdc|adt|wbk|err|tmp|~lir|~~lir|~jnt)|sync\.ffs_db|.\.\d{4}\.(rvt|rfa)
Could someone help me with this please?