Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to ignore .svn folder when searching in Total Commander

How can I ignore .svn folders when searching in Total Commander?

like image 858
vietean Avatar asked Sep 27 '11 04:09

vietean


2 Answers

To exclude some files or folders from your search, use the following syntax in "Search field:":

  1. Exclude from search *.bak and *.old files

    my*.*|*.bak *.old 
  2. Don't search in .svn folders

    *.cs|.svn\ 
  3. Don't search in .git folder

    *.cs|.git\ 

The meaning of | is: 'and not'. Everything after it is excluded from the search. This syntax can also be used in other places, for example inside the ignore list.

like image 117
Ivan Avatar answered Sep 17 '22 23:09

Ivan


  • With Total Commander 8.01: Configuration menu / Options / (Operation) / Ignore List
  • With older versions: Configuration menu / Options / (Display) / Ignore List

Then add

.svn 

to the textbox.

like image 45
palacsint Avatar answered Sep 17 '22 23:09

palacsint