明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
123
返回列表 发新帖
楼主: 自贡黄明儒

[讨论] 极速搜索Everything

    [复制链接]
发表于 2024-6-27 10:32:28 | 显示全部楼层
本帖最后由 煮茗 于 2024-6-27 10:33 编辑

修改简化了下。无需sendkeys。直接利用命令行启动everything来搜索。


(startapp "C:\\Program Files\\Everything\\Everything.exe -s" txt)
是用命令行启动Everything.exe,-s参数表示搜索后面那个指定文本内容(拾取的文本)。
注意我的Everything.exe安装于【C:\Program Files\Everything\】目录下。




(defun C:TZ (/ TXT)
  (if (setq txt (cdr (assoc 1 (entget (car (nentsel "\n 拾取搜索文本"))))))
    (if (= (getenv "PROCESSOR_ARCHITECTURE") "x86")  ;32位
      (Everything32 TXT)
      (Everything64 TXT)
    )
  )
  (princ)
)
(defun Everything64 (TXT)
  (startapp "C:\\Program Files\\Everything\\Everything.exe -s" txt)
  )
(defun Everything32 (TXT)
  (startapp "C:\\Program Files\\Everything\\Everything.exe -s" txt)
  )
)


Everything命令行还有很多参数,比如”
.txt content:<text>"用于搜索文件内含有指定文本内容的.txt文件,有兴趣的可以自行研究。


发表于 2024-6-27 14:42:49 | 显示全部楼层
everything 还能这么用,大开眼界
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-22 14:17 , Processed in 0.151508 second(s), 20 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表