Re: How to get list of output of find command of Linux
- Posted by ghaberek (admin) Jul 25, 2017
- 1901 views
I dug through the code for find and discovered that it's using a Linux API called fts which, ironically, uses a similar method to the one I've implemented above. So I guess I was on the right track!
I can work on writing a wrapper for this in Euphoria but that presents a challenge since the API relies heavily on a structure and structure support in Euphoria is all over the place right now.
Edit: my searching also found this conversation, which I forgot about from last year: dir() on linux via c_func, anyone?
-Greg