Dear all,
I understand searching through the content is extremely slow, but is there an option to search through the content of specific file type. For example I would like to search inside the content only inside the *.*sql files. Is that possible?
Thank you,
Regards
How to search content inside specific file format
-
demokedes
- Posts: 3
- Joined: Mon Jan 09, 2023 8:52 pm
-
NotNull
- Posts: 5961
- Joined: Wed May 24, 2017 9:22 pm
Re: How to search content inside specific file format
Code: Select all
ext:sql content:"your text"Example:
Code: Select all
c:\development dm:2022..2023 ext:sql content:"your text"-
tuska
- Posts: 1385
- Joined: Thu Jul 13, 2017 9:14 am
Re: How to search content inside specific file format
Search query
Reference: Info by NotNull - Filter or Bookmark ...
Search query (using a Filter or Bookmark):
Code: Select all
ext:sql ansicontent:"my text"
- OR -
ext:sql utf8content:"my text"Code: Select all
Search: content:mytext: | ansicontent:mytext: | utf8content:mytext: | utf16content:mytext: | utf16becontent:mytext:Code: Select all
Macro: mycontent<mytext>Code: Select all
ext:sql mycontent:"my text"-
demokedes
- Posts: 3
- Joined: Mon Jan 09, 2023 8:52 pm
Re: How to search content inside specific file format
Thank you very much. This is exactly what I needed. Regards