Case sensitive in TC search doesn't work
Moderators: Hacker, petermad, Stefan2, white
Case sensitive in TC search doesn't work
I search for SAT but it brings up Sat or sat despite checking the case sensitive option. I just to find those dirs with the exact name of "SAT".
Is it possible?
Thanks!
Is it possible?
Thanks!
Then why have the CASE sensitive option if it obviously doesn't work?herman5 wrote:YOu know that you are on WINDOWS FS right?
there is NO case sensitivity thats why searching for "SAT" allways brings up "sat" "SAT" "Sat" etc
if you want a case sensitive fs you have to switch to *unix...
Found this but it obviously doesn't help me much though.
W/o regex:
To find names with Britney or Spears just type *Britney* *Spears* w/o any quotes (asterisks before and after tell that any characters may be in filename before and after word).
To find names with exact string Britney Spears type this string in double quotes: "*Britney Spears*".
To find names with both Britney and Spears but with any single character between words type *Britney?Spears*.
To find names with both Britney and Spears but with any characters between words type *Britney*Spears*.
Same using regex ('regex' checkbox must be checked):
To find names with Britney or Spears just type Britney|Spears w/o any quotes.
To find names with exact string Britney Spears type it: Britney Spears.
To find names with both Britney and Spears but with any single character between words type Britney.Spears.
To find names with both Britney and Spears but with any characters between words type Britney.*Spears.
To find names with Britney Spears or Britney_Spears type Britney[ _]Spears.
Also press F1 in search dialog to get help topic about searching - and there will be link to page that describes regex syntax.
Or enable it in registry, since NTFS is case sensitive FS. Windows just isn't using that ability.if you want a case sensitive fs you have to switch to *unix...
2christianh
But you can do a case sensitive search just fine even without messing with your computer. Open the Find Files dialog, switch to 'Plugins' tab, select plugin 'tc', property 'fullname' and op '=(case)' and then type 'SAT' as the value. It should work.
Windows 10 Pro x64, Windows 11 Pro x64
Thanks!umbra wrote:Or enable it in registry, since NTFS is case sensitive FS. Windows just isn't using that ability.if you want a case sensitive fs you have to switch to *unix...
2christianh
But you can do a case sensitive search just fine even without messing with your computer. Open the Find Files dialog, switch to 'Plugins' tab, select plugin 'tc', property 'fullname' and op '=(case)' and then type 'SAT' as the value. It should work.
But it didn't work. Says No files found. I only want to find directories with the letters SAT uppercased.
Oh. thought it was something like that.umbra wrote:That option is for searching for case sensitive text in files. That's why it's enabled only when you tick 'Find text:'.Then why have the CASE sensitive option if it obviously doesn't work?
I hope you didn't type the quotation marks around the SAT as the value. Also make sure, that on the 'General' tab you have everything configured properly - except for 'Search for:', that should be left blank since you are using a plugin instead of it.But it didn't work. Says No files found. I only want to find directories with the letters SAT uppercased.
Note: You can combine other plugins and properties to narrow your future searches.
Windows 10 Pro x64, Windows 11 Pro x64
HEhe noo! Im not that stupid. Yep did everything you said but it says it doesn't find the files, in this case it should be folders though.umbra wrote:I hope you didn't type the quotation marks around the SAT as the value. Also make sure, that on the 'General' tab you have everything configured properly - except for 'Search for:', that should be left blank since you are using a plugin instead of it.But it didn't work. Says No files found. I only want to find directories with the letters SAT uppercased.
Note: You can combine other plugins and properties to narrow your future searches.
Image: http://i.imgur.com/XuhFsmw.png
Image: http://i.imgur.com/O8jYnTO.png
Re: Case sensitive in TC search doesn't work
Hello, christianh.
+ Windows 7 Home Premium 64-bit SP1
+ Total Commander 8.01 x64
Karl
Cannot really reproduce this problem onI search for SAT but it brings up Sat or sat despite checking the case sensitive option.
+ Windows 7 Home Premium 64-bit SP1
+ Total Commander 8.01 x64
Yes, it is.I just to find those dirs with the exact name of "SAT". Is it possible?
- <Alt><F7>
- Tab "General"- Search for: <leave empty>
- Tab "advanced" - Attributes Directory [x] ticked
- Tab "Plugins" - Option [X] Search in plugins ticked
plugin=tc
property=fullname
OP=cont.(case)
value=SAT - [Start Search]
- Result here:
finds exactly one folder having the name D:\Users\karl\Downloads\Test\SAT
ignores the folder D:\Users\karl\Downloads\Test2\sat
Karl
Last edited by karlchen on 2013-05-06, 16:20 UTC, edited 1 time in total.
MX Linux 21.3 64-bit xfce, Total Commander 11.50 64-bit
The people of Alderaan keep on bravely fighting back the clone warriors sent out by the unscrupulous Sith Lord Palpatine.
The Prophet's Song
The people of Alderaan keep on bravely fighting back the clone warriors sent out by the unscrupulous Sith Lord Palpatine.
The Prophet's Song
Re: Case sensitive in TC search doesn't work
Thanks that worked much better! What's the diff between the cont.case and =case?karlchen wrote:Hello, christianh.
Cannot really reproduce this problem onI search for SAT but it brings up Sat or sat despite checking the case sensitive option.
+ Windows 7 Home Premium 64-bit SP1
+ Total Commander 8.01 x64
Yes, it is.I just to find those dirs with the exact name of "SAT". Is it possible?
HTH,
- <Alt><F7>
- Tab "General"- Search for: <leave empty>
- Tab "advanced" - Attributes Directory [x] ticked
- Tab "Plugins" - Option [X] Search in plugins ticked
plugin=tc
property=fullname
OP=cont.(case)
value=SAT- [Start Search]
- Result here:
finds exactly one folder having the name D:\Users\karl\Downloads\Test\SAT
ignores the folder D:\Users\adminkh\Downloads\Test2\sat
Karl
Thanks alot!
The difference is that 'cont.case' will search for file/directory names that contain a substring 'SAT' (like 'eSAT', 'SATellite, ...') while '=(case)' will find only files/directories called exactly 'SAT'.
According to your first post:
According to your first post:
So I presumed you wanted the exact search.christianh wrote:I just to find those dirs with the exact name of "SAT".
Windows 10 Pro x64, Windows 11 Pro x64
The problem with tc.fullname is that any folder named SAT will have a pathname pre-fixed to it. As can be seen in the example that I gave, too.
As a consequence tc.fullname is not SAT, but D:\Users\karl\Downloads\Test\SAT e.g.
So maybe it would be better to use tc.name instead and =(case) SAT.
Will have to try.
Karl
As a consequence tc.fullname is not SAT, but D:\Users\karl\Downloads\Test\SAT e.g.
So maybe it would be better to use tc.name instead and =(case) SAT.
Will have to try.
Karl
MX Linux 21.3 64-bit xfce, Total Commander 11.50 64-bit
The people of Alderaan keep on bravely fighting back the clone warriors sent out by the unscrupulous Sith Lord Palpatine.
The Prophet's Song
The people of Alderaan keep on bravely fighting back the clone warriors sent out by the unscrupulous Sith Lord Palpatine.
The Prophet's Song
Hi, umbra, MVV.
You are both right. Temporary confusion on my side.
Cheers,
Karl
You are both right. Temporary confusion on my side.

Cheers,
Karl
MX Linux 21.3 64-bit xfce, Total Commander 11.50 64-bit
The people of Alderaan keep on bravely fighting back the clone warriors sent out by the unscrupulous Sith Lord Palpatine.
The Prophet's Song
The people of Alderaan keep on bravely fighting back the clone warriors sent out by the unscrupulous Sith Lord Palpatine.
The Prophet's Song