Closed mattiasb closed 7 years ago
Hi!
I constructed the following little helper function to help me fill up my projectile index just now:
(defun my/find-git-projects (dir) "Find all git projects under DIR." (mapcar #'f-dirname (f-directories "~/Documents/" (lambda () (equal (f-filename dir) ".git")) t)))
Unfortunately I get the following error:
f--collect-entries: Opening directory: Permission denied, c:/Users/mattias.bengtsson/AppData/Local/Application Data
Would it be possible to teach f-directories to optionally ignore directories it can't reach due to permissions instead of erroring out?
No, I think this is basically the same issue as https://github.com/rejeep/f.el/pull/73
Indeed it is.
Hi!
I constructed the following little helper function to help me fill up my projectile index just now:
Unfortunately I get the following error:
Would it be possible to teach f-directories to optionally ignore directories it can't reach due to permissions instead of erroring out?