PhpStorm "Find in Path" 过滤部分Runtime等无用文件夹

最近用PhpStorm开发基于ThinkPHP的项目。使用Ctrl+Shift+F (Find in Path)全局搜索code时,会搜索到Runtime等无用文件夹,结果包含大量的干扰信息。比如本想在code里找到定义服务器地址“127.0.0.1”的地方,结果实际在log中找到了大量的该地址。

PhpStorm
全局搜索会显示很多无用文件.png

因为Runtime是ThinkPHP的运行时目录,包含了重复的cache,code,log等,所以搜索时应该过滤该文件夹。
方法如下:

  1. 选中要过滤的文件夹,如Runtime,右键单击。 选择之后,该文件夹会变色。


    PhpStorm
    choose exclude.png

    PhpStorm
    excluded.png
  2. Verify!现在搜索127.0.0.1就不会有很多干扰啦。


    PhpStorm
    exclude Runtime之后搜索.png

你可能感兴趣的:(PhpStorm "Find in Path" 过滤部分Runtime等无用文件夹)