https://www.voidtools.com/support/everything/searching/

打开多个everything进程

https://www.voidtools.com/support/everything/multiple_instances/

Multiple Instances

By default there is only one instance of Everything.

When you run Everything.exe it will check for an existing instance. If an existing instance is found the command line options are sent and processed by the existing instance. If no existing instance is found a new one is created.

To run multiple instances of Everything use Named instances.

Named instances

By default Everything uses the unnamed instance.

Assign unique names to Everything instances to use multiple instances.

There can only be one instance for each unique name.

To assign a name to the instance:

Use the -instance command line option to specify the instance name when starting Everything.exe.

For example:

Everything.exe -instance "ETP Server"

Named instances use unique settings and data.

For example, the named instanced "ETP Server" will use Everything-ETP SERVER.ini as the settings file.

The name of the instance is located in the Everything search window
caption and in the tooltip when hovering over the tray icon with the
cursor.

在指定文件夹中进行搜索

比如想要在E:\GitHub\KerryJiang\SuperSocket-dotnetcore文件夹中搜索log4net

log4net E:\GitHub\KerryJiang\SuperSocket-dotnetcore

如果路径中带有空格的话,需要加双引号

SE_Point_File_mapping (1).xls "D:\ChuckLu\Installation packages"

右键菜单中增加everything

忽略配置

搜到不到sql文件或者vsdx文件

确保搜索的是everything,而不是document或audio之类的

仅搜索文件夹名字

folder:"red gate"

end with

endwith:<text> Filenames (including extension) ending with text.

通过正则来实现start with 和end with的组合

regex:^al.exe$

folder:regex:^powershell$

随机推荐

  1. Android Activity作为dialog对话框的使用详细介绍

    Activity做为Android应用层四大组件的重要组成部分,它的灵活性.可扩性无论是在应用还是游戏方面都得到了广泛应用,本文主要介绍Activity作为dialog对话框 的使用方法进行说明. 本 ...

  2. Java 基础入门随笔(1) JavaSE版——java语言三种技术架构

    1.java语言的三种技术架构: J2SE(java 2 Platform Standard Edition):标准版,是为开发普通桌面和商务应用程序提供的解决方案.该技术体系是其他两者的基础,可以完 ...

  3. SSL&TLS传输层加密协议实现图解--(重要)

    一.SSL&TLS 1.SSL:Secure Sockets Layer ,加密套接字协议层 1)SSL是为网络通信提供安全及数据完整性的一种安全协议,在传输层对网络连接进行加密 Secure ...

  4. zepto处理touch事件

    处理Touch事件能让你了解到用户的每一根手指的位置,在touch事件触发的时候产生,可以通过touch event handler的event对象取到,如果基于zepto.js开发,一般是通过eve ...

  5. cstring 转 string

    都通过基本类型来转换即可:CString可以转换为基本类型LPCTSTR,LPCTSTR根据项目编码可以是const char*或者const wchar_t*:string可以用c_str()转换为 ...

  6. windows设置右键菜单

    1. 打开注册表,(win + R,输入regedit) 2. 在 HKEY_CLASSES_ROOT\Directory\Background\shell 中,新建项:如(cmder),在 cmde ...

  7. python合并多个txt文件成为一个文件

    #coding=utf-8 import os import os.path #文件夹遍历函数 #获取目标文件夹的路径 filedir = './data/click_data' #获取当前文件夹中的 ...

  8. Lua操作符的优先级

    lua 操作符的优先级 lua操作符的优先级 如表所示(从高到低) 在二元操作符中,除了指数操作符 “^” 和连接操作符  “..”  是 ”右结合” 的,是所有其他操作符都是 “左结合” 的.因此如 ...

  9. Django - 视图获取请求头

    1.urls.py(url和函数对应关系) 2.通过request.evniron,返回request的所有信息,用索引的方式,获取用户请求头信息. 3.也可以通过key,value方式,来展示请求头 ...

  10. uva1584 Circular Sequence(Uva-1584)

    vj:https://vjudge.net/problem/UVA-1584 这个题讲的是一个圆环,圆环上面有一堆字母,找出字典序最小的那一圈 这个题我觉得直接用c语言的strcmp那一套感觉真是用不 ...