当前位置: 首页 > 工具软件 > XODA > 使用案例 >

xoda 0.4.6在windows下搜索功能

淳于昊然
2023-12-01

初步试了下,发现搜索不好用,翻了一下代码,搜索函数在functions.php文件的xd_search.调用的是系统命令find,虽然window下也有find命令,不过xoda里的参数是针对linux下find.

想到本机正好装有mingw环境可能不难改,mingw下有个oldfind命令可以,没有的话,复制mingw下的find,改名.

exec ('find "' . xd_get_root_dir() . escapeshellcmd ($where) . '" ' . $_type . ' ' . $_case . ' "*' . trim ($w, '\*') . '*"', $_found, $r);

改成

exec ('oldfind "' . xd_get_root_dir() . escapeshellcmd ($where) . '" ' . $_type . ' ' . $_case . ' "*' . trim ($w, '\*') . '*"', $_found, $r);

试了下,可以了.

如果不想装mingw,你得研究下windows的find命令.呵呵

 

转载于:https://my.oschina.net/wwfifi/blog/75220

 类似资料: