I'm trying to find file recursively from default-directory
with helm-find
(C-x c /
). It works out of box in linux.
I tried setting find-program
like (I have git bash installed)
(setq find-program "c:/Program\ Files/Git/usr/bin/find.exe")
It didn't work.
Then I tried installing findutils (gnu find) from chocolatey and then tried.
(setq find-program "C:/ProgramData/chocolatey/bin/find.exe")
This did not work either. What am I doing wrong?