Emacs. Helm package. How find files in folder (not a git folder) and all subfolders?

Viewed 1568

Windows 10 (64 bit), Emacs 25.1, Helm package.

To find file (e.g. myfile.txt) in any folder (not git, not project file) I use command helm-find-file. It's work. OK.

But now I need to find myfile.txt in current folder AND all subfolders. How I can do this by helm package?

2 Answers

Using helm-find-files followed by the C-c / command effectively runs helm-find which lets you type in a filename to search for from the current directory. You can also just call helm-find directly or helm-find-1 if calling from elisp code.

Related