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
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"
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"
Re: How to search content inside specific file format
Thank you very much. This is exactly what I needed. Regards